commit: 59d666d032353b054e3cdf4f18ad55e3346e73ca Author: yemou Hannam <yemou <AT> protonmail <DOT> com> AuthorDate: Wed Aug 31 01:01:25 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sat Sep 10 03:52:19 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59d666d0
profiles/features/clang: update environment variables Add CPP="clang-cpp" Change AS="llvm-as" to AS="clang -c" Signed-off-by: yemou Hannam <yemou <AT> protonmail.com> Closes: https://github.com/gentoo/gentoo/pull/27087 Signed-off-by: Sam James <sam <AT> gentoo.org> profiles/features/clang/make.defaults | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/profiles/features/clang/make.defaults b/profiles/features/clang/make.defaults index 09d9b31dbb3e..ad06c1d9333f 100644 --- a/profiles/features/clang/make.defaults +++ b/profiles/features/clang/make.defaults @@ -29,7 +29,8 @@ LDFLAGS="${LDFLAGS} ${SOME_HARDENING_LDFLAGS}" # use LLVM-provided binutils AR="llvm-ar" -AS="llvm-as" +AS="clang -c" +CPP="clang-cpp" NM="llvm-nm" STRIP="llvm-strip" RANLIB="llvm-ranlib"
