probably stupid question

  • Thread starter Thread starter Ann Adamson
  • Start date Start date
A

Ann Adamson

If we're developing apps using Visual Studio .NET, how do I get the right
MFC and C++ Runtime libraries out onto my embedded device. Do I have to
carry the libraries within my application component, or are these available
as updates to the component library? Also, stuff like the latest XML
parser - do I have to "componentize" myself, or what?

Ann
 
Hi Ann,

This is not a stupid question.

You can componentize dll files needed by your app on your development
machine you can detect them with dependency walker.
Also you can switch your C++ project to static linking so in overall if you
have few apps you will have smaller image and self sufficient programs.

For XML I have no idea.

Regards,
Slobodan

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Have an opinion on the effectiveness of Microsoft Embedded newsgroups? Tell
Microsoft!
https://www.windowsembeddedeval.com/community/newsgroups
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
I guess "Msxml 3.1 - Hotfix Q318203" is the latest xml version you can currently get from XPE Repository.
Anything else you will have to componentize yourself.
 
Back
Top