-
Notifications
You must be signed in to change notification settings - Fork 86
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
Extend cmake script to allow use of libc++ with g++ #207
Comments
Time to look at this in detail. As an update to the issue comment, it would be easier to consider just |
Started branch Next step: Bring up |
Hmm, are you sure that is the right way to go? The |
So, I have asked around, and everybody says "Use CMake toolchain file for this". A few specified "toolchain files for the general compiler setup, and then CMake presets for the details". I know nothing about CMake presets, but it may be worth looking into. |
Add to
CMakeLists.txt
the capability forg++
compilers touse
libc++
as the standard library in a build configuration.Provide one configuration that exercises this build configuration.
Suggestion:
g++-9 -std=c++17 libc++
.Rework the
clang++-8
configurations that already uselibc++
to use the new command line definition
CXX_STDLIB
insteadof co-opting
CXXFLAGS
.The text was updated successfully, but these errors were encountered: