-
Notifications
You must be signed in to change notification settings - Fork 69
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
append MASON_STDLIB_VERSION to binary if MASON_CXX_PACKAGE == true #115
Conversation
Using actual stdlib version string instead. |
Please add documentation for the new variable(s) to README.md. Needs @springmeyer 👀 for the general approach. |
4f3378d
to
cd3e01b
Compare
MASON_CXX_DUMPVERSION=`${CXX} -dumpversion` | ||
else | ||
MASON_CXX_DUMPVERSION=`c++ -dumpversion` | ||
fi |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we shorten this block to ${CXX:-c++} -dumpversion
and directly use it below?
9d0f2f1
to
7bd7320
Compare
7bd7320
to
3c627cb
Compare
On hold per #111 (comment) |
49448b7
to
f402ccc
Compare
respect CXX env var add script to print c++ stdlib version include <string> instead of <ciso646> because of https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65473
f402ccc
to
83ebe76
Compare
Prospective solution to #111, packages with stdlib ABI compatibility issues can opt-in to publishing/fetching compiler-specific versions.
/cc @danpat @springmeyer