forked from M-Labs/nac3
flake: fix Windows libs further
This commit is contained in:
parent
aab43b1c07
commit
998f49261d
|
@ -77,8 +77,9 @@
|
||||||
cat << EOF > llvm-cfg/llvm-config
|
cat << EOF > llvm-cfg/llvm-config
|
||||||
#!${pkgs.bash}/bin/bash
|
#!${pkgs.bash}/bin/bash
|
||||||
set -e
|
set -e
|
||||||
# gross hack to work around llvm-config asking for the wrong system libraries
|
# Gross hack to work around llvm-config asking for the wrong system libraries.
|
||||||
exec ${pkgs-mingw.llvm_12.dev}/bin/llvm-config-native \$@ | ${pkgs.gnused}/bin/sed s/-lrt\ -ldl/-lmcfgthread\ -lz/
|
# Also add some other libraries we need here.
|
||||||
|
exec ${pkgs-mingw.llvm_12.dev}/bin/llvm-config-native \$@ | ${pkgs.gnused}/bin/sed s/-lrt\ -ldl\ -lpthread\ -lm/-lmcfgthread\ -lz\ -luuid\ -lole32/
|
||||||
EOF
|
EOF
|
||||||
chmod +x llvm-cfg/llvm-config
|
chmod +x llvm-cfg/llvm-config
|
||||||
export PATH=$PATH:`pwd`/llvm-cfg
|
export PATH=$PATH:`pwd`/llvm-cfg
|
||||||
|
|
Loading…
Reference in New Issue