Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add mixin to force clang and libcxx #16

Merged
merged 5 commits into from
Mar 13, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ mixin:
- build-type.mixin
- ccache.mixin
- coverage.mixin
- libcxx.mixin
- test-linters.mixin
10 changes: 10 additions & 0 deletions libcxx.mixin
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
build:
libcxx:
emersonknapp marked this conversation as resolved.
Show resolved Hide resolved
cmake-args:
- "-DCMAKE_C_COMPILER=clang-6.0"
- "-DCMAKE_CXX_COMPILER=clang++-6.0"
emersonknapp marked this conversation as resolved.
Show resolved Hide resolved
- "-DCMAKE_CXX_FLAGS=-stdlib=libc++ -D_LIBCPP_ENABLE_THREAD_SAFETY_ANNOTATIONS"
nuclearsandwich marked this conversation as resolved.
Show resolved Hide resolved
emersonknapp marked this conversation as resolved.
Show resolved Hide resolved
- "-DFORCE_BUILD_POCO=ON"
- "-DFORCE_BUILD_TINYXML=ON"
dirk-thomas marked this conversation as resolved.
Show resolved Hide resolved
- "--no-warn-unused-cli"
merge-install: true
emersonknapp marked this conversation as resolved.
Show resolved Hide resolved