on travis, use libc++ together with clang. Update libsimulator to fix gcc build
This commit is contained in:
parent
2b0920f407
commit
3594da7839
|
@ -31,13 +31,14 @@ addons:
|
|||
- libboost1.55-tools-dev
|
||||
- python2.7-dev
|
||||
- g++-5
|
||||
- libc++-dev
|
||||
|
||||
before_install:
|
||||
- git submodule update --init --recursive
|
||||
|
||||
install:
|
||||
- 'echo "using gcc : : ccache g++-5 : <cxxflags>-std=c++11 ;" > ~/user-config.jam'
|
||||
- 'echo "using clang : : ccache clang++ : <cxxflags>-std=c++11 ;" >> ~/user-config.jam'
|
||||
- 'echo "using clang : : ccache clang++ : <compileflags>-stdlib=libc++ <linkflags>-stdlib=libc++ <cxxflags>-std=c++11 ;" >> ~/user-config.jam'
|
||||
- 'echo "using python : 2.7 ;" >> ~/user-config.jam'
|
||||
- ccache -V && ccache --show-stats && ccache --zero-stats
|
||||
|
||||
|
|
2
Jamfile
2
Jamfile
|
@ -278,6 +278,8 @@ rule warnings ( properties * )
|
|||
result += <cflags>-Wall ;
|
||||
result += <cflags>-Wextra ;
|
||||
|
||||
result += <cflags>-Wno-deprecated-declarations ;
|
||||
|
||||
# enable these warnings again, once the other ones are dealt with
|
||||
result += <cflags>-Wno-sign-compare ;
|
||||
}
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 59a889794666ddb64e8cc26cf75834f23afe7e5b
|
||||
Subproject commit 4f3d6916d553849e19962f54342a87a7d75c1840
|
Loading…
Reference in New Issue