3
0
Fork 0
forked from mirrors/nixpkgs

rasm: remove -march=native from compilation flags

This commit is contained in:
Konrad Borowski 2020-04-07 17:47:10 +02:00
parent d7b98129fe
commit 5b0b5f5928

View file

@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
buildPhase = ''
# according to official documentation
cc rasm_v*.c -O2 -lm -lrt -march=native -o rasm
cc rasm_v*.c -O2 -lm -lrt -o rasm
'';
installPhase = ''