I found, the hard way, that at least boost::program_options is dependent of the compiler configured structure member alignment.

If you build boost using default settings and link it with a project using 4 bytes alignment (/Zp4) it will fail at runtime (made a minimal test with program_options). Boost will generate an assert indicating a possible bad calling convention but the real reason is the structure member alignment.

Is there any way to prevent this? If the alignment makes the code incompatible shouldn't this be included in library naming?

link|improve this question

64% accept rate
You know, there are a lot of compiler options that alter the ABI. They can't all be named. Sometimes, even Boost developers have to assume that their users are competent and know how to link to a library – jalf Apr 26 '10 at 9:21
1  
Are you compiling the program options lib yourself? Or using a prebuilt? If you can provide the test case we'd, i.e. Vladimir P., love to debug it. Because as long as all the code is compile with compatible options things should not break. – GrafikRobot Apr 26 '10 at 13:33
feedback

1 Answer

up vote 8 down vote accepted

You need to ensure that your program and the libraries you link with have the same ABI.

The number of compiler switches that can alter the ABI of C++ classes and functions could be too large so it is clearly a problem to name more than 3000 combinations.

You could take a look here for a more detailed rationale.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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