3
0
Fork 0
forked from mirrors/nixpkgs

libc++5: tweak expression so as to avoid rebuild on non-musl for now

This commit is contained in:
Will Dietz 2018-02-19 12:43:42 -06:00
parent fa8a511260
commit e5e69a7aed

View file

@ -9,9 +9,13 @@ stdenv.mkDerivation rec {
unpackFile ${libcxxabi.src}
export LIBCXXABI_INCLUDE_DIR="$PWD/$(ls -d libcxxabi-${version}*)/include"
'';
patches = stdenv.lib.optionals stdenv.hostPlatform.isMusl [
# on next rebuild, this can be replaced with optionals; for now set to null to avoid
# patches = stdenv.lib.optionals stdenv.hostPlatform.isMusl [
patches = if stdenv.hostPlatform.isMusl then [
../../libcxx-0001-musl-hacks.patch
];
] else null;
prePatch = ''
substituteInPlace lib/CMakeLists.txt --replace "/usr/lib/libc++" "\''${LIBCXX_LIBCXXABI_LIB_PATH}/libc++"
'';