Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove -march=native from MUSCLE's compile script #52616

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions recipes/muscle/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,9 @@ package:
source:
url: https://github.com/rcedgar/muscle/archive/refs/tags/v{{ version }}.tar.gz
sha256: 74b22a94e630b16015c2bd9ae83aa2be2c2048d3e41f560b2d4a954725c81968
patches:
- support-linux-aarch64.patch

build:
number: 0
number: 1
run_exports:
- {{ pin_subpackage(name, max_pin="x.x") }}

Expand Down
13 changes: 0 additions & 13 deletions recipes/muscle/support-linux-aarch64.patch

This file was deleted.

4 changes: 2 additions & 2 deletions recipes/muscle/vcxproj_make.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@
binary = ProjFileName.replace(".vcxproj", "")
sys.stderr.write("binary=" + binary + "\n")

compiler_opts = " -ffast-math -march=native"
linker_opts = " -ffast-math -march=native"
compiler_opts = " -ffast-math"
linker_opts = " -ffast-math"

if std:
compiler_opts += " --std=" + std
Expand Down
Loading