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 | 85950e8bdf597356f8328592eb423c6c84cf00d9 (patch) | |
tree | 14efd6ec8127d63e07f7acf576950d54a2fa9e80 /Jamroot.jam | |
parent | GCC 4.7 compat fixes (diff) | |
download | libdbpp-postgresql-85950e8bdf597356f8328592eb423c6c84cf00d9.tar.bz2 libdbpp-postgresql-85950e8bdf597356f8328592eb423c6c84cf00d9.tar.xz libdbpp-postgresql-85950e8bdf597356f8328592eb423c6c84cf00d9.zip |
Use CXX from the environment
Diffstat (limited to 'Jamroot.jam')
-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 ; |