#35217: boost @1.50.0 Porfile does not pass configure.c{xx}flags to boost build ---------------------------------------+------------------------------------ Reporter: andrew.c.morrow@… | Owner: adfernandes@… Type: defect | Status: new Priority: Normal | Milestone: Component: ports | Version: 2.1.1 Keywords: | Port: boost ---------------------------------------+------------------------------------ Changes (by ryandesign@…): * cc: andrew.c.morrow@… (removed) * owner: macports-tickets@… => adfernandes@… * milestone: MacPorts Future => Old description:
I've been experimenting with building various macports C++ libraries with XCode 4.5 DP2, with the compiler hardcoded to clang, and with '-std=c++11 -stdlib=libc++' edited into configure.cxxflags in portconfigure.tcl:
default configure.cxxflags {"${configure.optflags} -std=c++11 -stdlib=libc++"}
I'll be the first to admit this is a somewhat exotic setup, but I've actually had surprisingly good success so far.
One problem I have discovered is that my modified configure.cxxflags were not being passed along into the boost build system when building boost. In the Boost Portfile there is a line like this:
write_jam "using darwin : : ${filter}${configure.cxx} ;"
Which configures the user-config.jam file used by boosts build system. Based on the information here:
http://www.boost.org/boost- build2/doc/html/bbv2/overview/configuration.html
I think that this line should be modified to something more like:
write_jam "using darwin : : ${filter}${configure.cxx} : <compileflags>\"${configure.cppflags}\" <cflags>\"${configure.cflags}\" <cxxflags>\"${configure.cxxflags}\" <linkflags>\"${configure.cxxflags} ${configure.ldflags}\" ;"
New description: I've been experimenting with building various macports C++ libraries with XCode 4.5 DP2, with the compiler hardcoded to clang, and with '-std=c++11 -stdlib=libc++' edited into configure.cxxflags in portconfigure.tcl: {{{ default configure.cxxflags {"${configure.optflags} -std=c++11 -stdlib=libc++"} }}} I'll be the first to admit this is a somewhat exotic setup, but I've actually had surprisingly good success so far. One problem I have discovered is that my modified configure.cxxflags were not being passed along into the boost build system when building boost. In the Boost Portfile there is a line like this: {{{ write_jam "using darwin : : ${filter}${configure.cxx} ;" }}} Which configures the user-config.jam file used by boosts build system. Based on the information here: http://www.boost.org/boost- build2/doc/html/bbv2/overview/configuration.html I think that this line should be modified to something more like: {{{ write_jam "using darwin : : ${filter}${configure.cxx} : <compileflags>\"${configure.cppflags}\" <cflags>\"${configure.cflags}\" <cxxflags>\"${configure.cxxflags}\" <linkflags>\"${configure.cxxflags} ${configure.ldflags}\" ;" }}} -- -- Ticket URL: <https://trac.macports.org/ticket/35217#comment:2> MacPorts <http://www.macports.org/> Ports system for Mac OS