diff options
author | John Wiegley <johnw@newartisans.com> | 2009-10-30 17:49:32 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-10-30 17:49:32 -0400 |
commit | 4fec10777b90dccf10f458d74c98164efcb95647 (patch) | |
tree | 2b88eb84f5abe6dc9420a42b65cc72960861ee49 /acprep | |
parent | 924c0a30134d0ffc591d596d2646bd946a3536ef (diff) | |
download | fork-ledger-4fec10777b90dccf10f458d74c98164efcb95647.tar.gz fork-ledger-4fec10777b90dccf10f458d74c98164efcb95647.tar.bz2 fork-ledger-4fec10777b90dccf10f458d74c98164efcb95647.zip |
On my system, use _GLIBCXX_FULLY_DYNAMIC_STRING
Diffstat (limited to 'acprep')
-rwxr-xr-x | acprep | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -712,12 +712,14 @@ class PrepareBuild(CommandLineApp): def setup_for_johnw(self): # jww (2009-03-09): Some peculiarities specific to my system - if exists('/usr/local/stow/cppunit/include'): - self.sys_include_dirs.insert(0, '/usr/local/stow/cppunit/include') - self.sys_library_dirs.insert(0, '/usr/local/stow/cppunit/lib') + if exists('/Users/johnw/Dropbox/Accounts/ledger.dat'): + if exists('/usr/local/stow/cppunit/include'): + self.sys_include_dirs.insert(0, '/usr/local/stow/cppunit/include') + self.sys_library_dirs.insert(0, '/usr/local/stow/cppunit/lib') self.CXXFLAGS.append('-march=nocona') self.CXXFLAGS.append('-msse3') + self.CPPFLAGS.append('-D_GLIBCXX_FULLY_DYNAMIC_STRING=1') self.options.use_glibcxx_debug = True |