diff options
author | John Wiegley <johnw@newartisans.com> | 2012-04-23 00:22:12 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2012-04-25 03:09:55 -0500 |
commit | 6af3f0448fe8b3bf3472504a3ee547a816ab381a (patch) | |
tree | 0a7bf786a3501cc85630b21513eb564bf6b09a83 /acprep | |
parent | adbd99414b56a02cb3acf8c0251a434aa950eca1 (diff) | |
download | fork-ledger-6af3f0448fe8b3bf3472504a3ee547a816ab381a.tar.gz fork-ledger-6af3f0448fe8b3bf3472504a3ee547a816ab381a.tar.bz2 fork-ledger-6af3f0448fe8b3bf3472504a3ee547a816ab381a.zip |
More support for building with Clang
Diffstat (limited to 'acprep')
-rwxr-xr-x | acprep | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -1016,8 +1016,14 @@ class PrepareBuild(CommandLineApp): self.envvars['PYTHON_HOME'] = '/opt/local' if self.options.use_clang: - self.boost_inc_ident = "clang" - self.boost_lib_ident = "clang-darwin28" + self.log.info('Setting up for using Clang') + + self.boost_inc_ident = "clang31" + self.boost_lib_ident = "clang-darwin42" + + #self.CXXFLAGS.append('-std=c++11') + #self.CXXFLAGS.append('-stdlib=libc++') + #self.LDFLAGS.append('-stdlib=libc++') global search_prefixes search_prefixes = [ '/opt/local', '/usr/local', '/sw', '/usr' ] |