diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2010-04-22 12:54:07 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2010-04-22 12:54:07 +0200 |
commit | 86860c7c53c1e1e2c28e8ad9a03cdb3bd89fb5f1 (patch) | |
tree | 69747a2b70c361d7374c97e29d323ebdcaabdb22 /README | |
parent | 926bc43ff93d966ea128cde3229ea09a420e28ff (diff) |
Add BOOST_LINK_SYSTEM flag for explicit libboost_system linking
Diffstat (limited to 'README')
-rw-r--r-- | README | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -21,13 +21,14 @@ the CPPFLAGS and LDFLAGS variables, respectively. The build system supports the following variables: CXX (defaults to g++ if not set) +AR (defaults to ar if not set) +RANLIB (defaults to ranlib if not set) CPPFLAGS CXXFLAGS LDFALGS LIBS BOOST_LIB_SUFFIX -AR (defaults to ar if not set) -RANLIB (defaults to ranlib if not set) +BOOST_LINK_SYSTEM For example: @@ -38,6 +39,11 @@ Boost library suffix. For example, if your Boost library names are in the libboost_regex-gcc41-mt-d.so format, then you will need to set BOOST_LIB_SUFFIX to -gcc41-mt-d. +The BOOST_LINK_SYSTEM variable allows you to specify whether the +Boost system library should be explicitly linked to which may be +required by newer linkers. The valid values are 'y' (default) and +'n'. + If you would like to see the full compiler/linker/etc., command lines, you can add verbose=1 to the make command line: |