Tagged Questions

4
votes
6answers
285 views

Developing for different platforms individually, does anyone recommend it?

I know it is easy to recommend several cross platform libraries. However, are there benefits to treating each platform individually for your product? Yes there will be some base libraries used in ...
3
votes
2answers
367 views

Referencing a platform-specific library from a non-specific .NET app

I often need to include little bits of native code in my C# apps, which I tend to do via C++/CLI. Usually I just need to use a C++ library for which there exists no good alternative for .NET; but ...
1
vote
2answers
750 views

C++ STL Map - find(pair<string,bool>) works in windows Visual Studio but not with g++ in Linux!

I seem to be having issues with using find() with the STL map on different platforms. Here is my code to be complete: #include <stdio.h> #include <stdlib.h> #include <iostream> ...
1
vote
1answer
102 views

Runtime or compile time for platform-specific libraries?

I'm creating a library in C++. It links against Windows libraries on Windows and Linux libraries on Linux. It's abstracted, all is well. However, is it feasible to dynamically detect, load and use ...