diff options
author | randomdan <randomdan@localhost> | 2013-08-19 00:04:31 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2013-08-19 00:04:31 +0000 |
commit | d3ca78499500b6393ffd83f6c5c269f5bd145134 (patch) | |
tree | d2b69e9efb4398f3be24cf14c36bb9ca22d30a4d | |
parent | Migrate all stuff to stricter compilations/links and C++0x builds (diff) | |
download | libdbpp-odbc-d3ca78499500b6393ffd83f6c5c269f5bd145134.tar.bz2 libdbpp-odbc-d3ca78499500b6393ffd83f6c5c269f5bd145134.tar.xz libdbpp-odbc-d3ca78499500b6393ffd83f6c5c269f5bd145134.zip |
Use CXX from the environment
-rw-r--r-- | Jamroot.jam | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Jamroot.jam b/Jamroot.jam index 1c2bea6..1f58848 100644 --- a/Jamroot.jam +++ b/Jamroot.jam @@ -1,4 +1,6 @@ -using gcc ; +import os ; + +using gcc : : [ os.environ CXX ] ; import type : register ; import generators : register-standard ; |