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 | 18690d86f5e724868f6f959b84b90e19a119f0ea (patch) | |
tree | 69fdbe7fff6314dc528b71246765d0edabd2ebac | |
parent | Add logs for non-usercheck exceptions when processing CGI stages (diff) | |
download | project2-18690d86f5e724868f6f959b84b90e19a119f0ea.tar.bz2 project2-18690d86f5e724868f6f959b84b90e19a119f0ea.tar.xz project2-18690d86f5e724868f6f959b84b90e19a119f0ea.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 ; |