vote up 3 vote down star
1

I am writing an application that I would like to release binaries for on Mac, Windows, and Linux. I have code that compiles under Mac and Linux, but under Windows, it does not.

This is because of Windows lack of a strcasecmp. I've read a little bit about how I can create some sort of header to wrap my code, but I don't really understand this concept too well. I've worked on the code on my Mac with just vim and make, but now I'm trying to switch it all over to Visual Studio.

Is there some way I can set my project up to include Windows wrapper headers when I'm building on Windows, but omit them when I'm building on my Mac or Linux box?

This problem is really giving me a headache and I'd appreciate any suggestions!

flag

52% accept rate

4 Answers

vote up 7 vote down check

You could do

#ifdef WIN32
#include <windows_specific_header.h>
#else
#include <other_header.h>

There is also an MS Visual Studio-specific macro: _MSC_VER, so

#ifdef _MSC_VER

would also work here.

There is also WINVER define in windows.h.

link|flag
Is WIN32 a compiler defined symbol or is that something I have to define? – samoz Jun 14 at 20:05
This is a compiler-defined symbol. – PaV Jun 14 at 20:06
1  
You have to be a bit careful with WIN32, since it's sometimes true in compilers that you think aren't Windows-y. IIRC for instance it's true when compiling Symbian code for the emulator, even though no Windows headers or libraries are available. Doesn't affect you if your platforms are just win/linux/mac, but might matter to code designed to be extremely portable. – Steve Jessop Jun 15 at 1:13
Does WIN32 appear in Netbeans under windows? – samoz Jun 17 at 13:27
vote up 1 vote down

configure my project to generate platform independent code

That is a bit of an odd phase, so I'm not sure that I'm aswering the right question, but here goes:

You have to write platform independent code.

Do one of these:

  • Write to a cross-platform framework (i.e. QT)
  • Only use library functions that are available on all your targets

or

  • provide wrappers to fill up any gaps in the library for on (or more) targets
link|flag
Well mostly I need some string functions that Windows doesn't provide. Rather, they provide them, but under a different name, so a Windows compiler won't find the same functions that Mac or Linux would. – samoz Jun 14 at 20:13
vote up 1 vote down

Boost libraries are designed to be cross-platform. In particular, if you need to manipulate strings, you'll probably find what you need. And it will be cross-platform without having to deal with it yourself. See there to get a glimpse of what's available.

link|flag
vote up 0 vote down

maybe you can consider compiling your code with MINGW32 on windows.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.