Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

compiler: http://sourceforge.net/projects/mingwbuilds/files/host-windows/releases/4.7.2/32-bit/threads-posix/sjlj/x32-4.7.2-release-posix-sjlj-rev6.7z

boost: http://sourceforge.net/projects/boost/files/boost/1.52.0/boost_1_52_0.7z

(both on D: drive)

boost_regex compiled with:

b2 --prefix=D:\boost toolset=gcc --with-regex --layout=tagged release

code:

#include <boost\regex.hpp>
int main() {
  boost::regex reg("[a-z]+");
}

compiled with parameters:

g++ -I "d:\boost" -Os -o test.exe test.cpp -static -L d:\boost\stage\lib -lboost_regex-mt

error:

d:\boost\stage\lib\libboost_regex-mt.a(regex.o): duplicate section `.rdata$_ZTVN5boost16exception_detail19error_info_injectorISt13runtime_errorEE[__ZTVN5boost16exception_detail19error_info_injectorISt13runtime_errorEE]' has different size
d:\boost\stage\lib\libboost_regex-mt.a(regex.o): duplicate section `.rdata$_ZTVN5boost16exception_detail10clone_implINS0_19error_info_injectorISt13runtime_errorEEEE[__ZTVN5boost16exception_detail10clone_implINS0_19error_info_injectorISt13runtime_errorEEEE]' has different size
d:\boost\stage\lib\libboost_regex-mt.a(regex.o): duplicate section `.rdata$_ZTSN5boost16exception_detail10clone_implINS0_19error_info_injectorISt13runtime_errorEEEE[__ZTSN5boost16exception_detail10clone_implINS0_19error_info_injectorISt13runtime_errorEEEE]' has different size
d:\boost\stage\lib\libboost_regex-mt.a(regex.o): duplicate section `.rdata$_ZTSN5boost16exception_detail10clone_baseE[__ZTSN5boost16exception_detail10clone_baseE]' has different size
d:\boost\stage\lib\libboost_regex-mt.a(regex.o): duplicate section `.rdata$_ZTSN5boost16exception_detail19error_info_injectorISt13runtime_errorEE[__ZTSN5boost16exception_detail19error_info_injectorISt13runtime_errorEE]' has different size

It compiles ok, but I haven't yet tested if it will be working in more complex code. Removing the -Os switch clears the error but app size is 2x bigger then.

Maybe I should build Boost with size optimization too also but I don't know where to pass this option in b2 command line.

share|improve this question
This unanswered question has the same problem. One of the comments suggests that the problem may be isolated to mingw-w64. Mingw-build's g++ 4.8.0 also presents this problem and fedora 17's g++ 4.7.2 does not, so he/she may be right. – user1252091 Jan 6 at 12:14
1  
As you said using size optimization (adding optimization=space to your boost build command) seems to remove the problem. You should put that as an answer if you can confirm that it works. PS: Well, the problem is now reversed, the compiler spews those errors/warnings whenever you don't use -Os. – user1252091 Jan 6 at 12:16
@llonesmiz : thanks! this works. The problem was that I could not find this option, it is not printed by b2 --help nor --help-options. – rsk82 Jan 6 at 12:27
If you plan to use only g++ (or compilers that accept the same command line flags) you could also use cxxflags=-Os. There is also linkflags to pass options to the linker. – user1252091 Jan 6 at 13:26

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.