-
-
Notifications
You must be signed in to change notification settings - Fork 30
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 clang{,xx}
compilers
#102
Conversation
…nda-forge-pinning 2024.03.07.00.29.48
Hi! This is the friendly automated conda-forge-linting service. I just wanted to let you know that I linted all conda-recipes in your PR ( |
Thanks |
Cool, exciting to see this land! :) I think that means we can close conda-forge/clang-compiler-activation-feedstock#117... Also, if you have a moment, I'd appreciate your thoughts on how to unify the symlink structure, c.f.:
|
find . -name "*activate-gcc.sh" -exec sed -i.bak "s|@COMPILERS@|cpp gcc gcc-ar gcc-nm gcc-ranlib|g" "{}" \; | ||
find . -name "*activate-g++.sh" -exec sed -i.bak "s|@CXX_COMPILERS@|g++|g" "{}" \; | ||
find . -name "*activate-gcc.sh" -exec sed -i.bak "s|@CC@|${CHOST}-cc|g" "{}" \; | ||
find . -name "*activate-g++.sh" -exec sed -i.bak "s|@CXX@|${CHOST}-c++|g" "{}" \; | ||
find . -name "*activate-gcc.sh" -exec sed -i.bak "s|@CC_FOR_BUILD@|${CBUILD}-clang|g" "{}" \; | ||
find . -name "*activate-g++.sh" -exec sed -i.bak "s|@CXX_FOR_BUILD@|${CBUILD}-clang++|g" "{}" \; |
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.
I had taken this part over from #100, didn't notice the C&P error, sorry.
Another variant of #101 based on #100 after @isuruf seems to prefer the approach in #100; I'm fine with that, I'd just like to not lose some of the improvements of #101.