diff options
author | Adrian Ratiu <adrian.ratiu@collabora.com> | 2021-12-06 17:31:48 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2021-12-06 17:31:48 +0100 |
commit | bb14cb3de155f3bd7bbc292faa73dc4ee4c931e9 (patch) | |
tree | 0654d39edb7f27f01e1104c9d6a733bb0a8dcd57 /dev-libs | |
parent | www-client/firefox: force USE=dbus for USE=wayland (diff) | |
download | gentoo-bb14cb3de155f3bd7bbc292faa73dc4ee4c931e9.tar.gz gentoo-bb14cb3de155f3bd7bbc292faa73dc4ee4c931e9.tar.bz2 gentoo-bb14cb3de155f3bd7bbc292faa73dc4ee4c931e9.zip |
dev-libs/boost: fix AR/RANLIB configuration
The ebuild jam configuration did not specify any values for the
archiver and ranlib so Boost.Build would end up using the default
GNU versions even when building with Clang++.
Setting the values ensures the proper llvm-ar / llvm-ranlib are
used in LLVM build configurations.
Closes: https://github.com/gentoo/gentoo/pull/23198
Signed-off-by: Adrian Ratiu <adrian.ratiu@collabora.com>
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/boost/boost-1.77.0-r4.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev-libs/boost/boost-1.77.0-r4.ebuild b/dev-libs/boost/boost-1.77.0-r4.ebuild index cebd955d5882..5ec5337f1703 100644 --- a/dev-libs/boost/boost-1.77.0-r4.ebuild +++ b/dev-libs/boost/boost-1.77.0-r4.ebuild @@ -91,7 +91,7 @@ create_user-config.jam() { fi cat > "${user_config_jam}" <<- __EOF__ || die - using ${compiler} : ${compiler_version} : ${compiler_executable} : <cflags>"${CFLAGS}" <cxxflags>"${CXXFLAGS}" <linkflags>"${LDFLAGS}" ; + using ${compiler} : ${compiler_version} : ${compiler_executable} : <cflags>"${CFLAGS}" <cxxflags>"${CXXFLAGS}" <linkflags>"${LDFLAGS}" <archiver>"$(tc-getAR)" <ranlib>"$(tc-getRANLIB)" ; ${mpi_configuration} __EOF__ |