diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2013-09-05 12:23:00 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2013-09-05 12:23:00 -0700 |
commit | 4ac447a3c249c93e207491e567bdf8e479151997 (patch) | |
tree | 70c5788d3bcccdb4c58e074c6ecc1db554bb118e | |
parent | 6392a7d25455cda84e21278a16aaf1683c002678 (diff) | |
download | tmwa-4ac447a3c249c93e207491e567bdf8e479151997.tar.gz tmwa-4ac447a3c249c93e207491e567bdf8e479151997.tar.bz2 tmwa-4ac447a3c249c93e207491e567bdf8e479151997.tar.xz tmwa-4ac447a3c249c93e207491e567bdf8e479151997.zip |
Apply upstream patch to make clang-3.1 work with libstdc++-4.6
-rw-r--r-- | .travis.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 7dcd4f5..d53bd07 100644 --- a/.travis.yml +++ b/.travis.yml @@ -34,7 +34,13 @@ install: - sudo apt-get install -qq libgtest-dev ## Do something before the main test script -# before_script: ... +before_script: + - + if [ $PACKAGE = clang-3.1 ]; + then + wget http://clang.llvm.org/libstdc++4.6-clang11.patch; + sudo patch /usr/include/c++/4.6/type_traits < libstdc++4.6-clang11.patch; + fi ## Main test script script: |