Merge pull request #84617 from xfix/remove-rasm-march-native

rasm: remove -march=native from compilation flags
This commit is contained in:
Graham Christensen 2020-10-14 12:02:36 -04:00 committed by GitHub
commit 8726057fbd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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 = ''