Skip to content

Commit

Permalink
Fix portability issues in pfft (#211)
Browse files Browse the repository at this point in the history
Replace `-march=native` by `-mtune=native` to avoid illegal instructions on unsupported hardware.
  • Loading branch information
jngrad authored Feb 3, 2023
2 parents cb0a288 + 371c76e commit 4dffd53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/install-pfft.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ cd pfft-${pfft_version}
./bootstrap.sh
mkdir build
cd build
../configure --prefix=/usr/local
../configure --prefix=/usr/local --enable-portable-binary
make -j $(nproc)
make install
cd
Expand Down

0 comments on commit 4dffd53

Please sign in to comment.