commit:     c7bb7c1750e54218dcf79b622eb6fed17ffa1fa1
Author:     Ross Charles Campbell <rossbridger.cc <AT> gmail <DOT> com>
AuthorDate: Sun Aug 30 17:33:08 2020 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Mon Aug 31 22:08:56 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7bb7c17

dev-libs/nss: detect compiler type and set CC_IS_{GCC,CLANG}

The two flags enables the build system to detect certain compiler features
and optimizations.

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Ross Charles Campbell <rossbridger.cc <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/17269
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>

 dev-libs/nss/nss-3.56.ebuild | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/dev-libs/nss/nss-3.56.ebuild b/dev-libs/nss/nss-3.56.ebuild
index 1404b61e14c..c5e3dea3064 100644
--- a/dev-libs/nss/nss-3.56.ebuild
+++ b/dev-libs/nss/nss-3.56.ebuild
@@ -163,6 +163,12 @@ multilib_src_compile() {
        export ASFLAGS=""
        # Fix build failure on arm64
        export NS_USE_GCC=1
+       # Detect compiler type and set proper environment value
+       if tc-is-gcc; then
+               export CC_IS_GCC=1
+       elif tc-is-clang; then
+               export CC_IS_CLANG=1
+       fi
 
        local d
 

Reply via email to