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 | bcfa8c6e2ae8c6e3b471cfcb21d3dc26e283c873 (patch) | |
tree | 241981563252d5afb77342ba2c92591deb128c14 | |
parent | Migrate all stuff to stricter compilations/links and C++0x builds (diff) | |
download | libadhocutil-bcfa8c6e2ae8c6e3b471cfcb21d3dc26e283c873.tar.bz2 libadhocutil-bcfa8c6e2ae8c6e3b471cfcb21d3dc26e283c873.tar.xz libadhocutil-bcfa8c6e2ae8c6e3b471cfcb21d3dc26e283c873.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 ; |