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 -m64 compiler flag for non-x86-64 CPU architectures in SIONlib 1.7.7 easyconfigs #21752

Merged
merged 1 commit into from
Oct 29, 2024
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ builddependencies = [
('binutils', '2.37'),
]

# remove -m64 flag from PFLAG variable in Makefiles for CPU architectures that don't support it
if ARCH != 'x86_64':
preconfigopts = 'sed -i "s|PFLAG = -m\\$(PREC)|PFLAG = |" mf/Makefile.defs.linux-gomp* && '

configopts = '--disable-cxx --disable-fortran --disable-ompi '

# Comment it out if you have Xeon Phi:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ builddependencies = [
('binutils', '2.38'),
]

# remove -m64 flag from PFLAG variable in Makefiles for CPU architectures that don't support it
if ARCH != 'x86_64':
preconfigopts = 'sed -i "s|PFLAG = -m\\$(PREC)|PFLAG = |" mf/Makefile.defs.linux-gomp* && '

configopts = '--disable-cxx --disable-fortran --disable-ompi '

# Comment it out if you have Xeon Phi:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ builddependencies = [
('binutils', '2.39'),
]

# remove -m64 flag from PFLAG variable in Makefiles for CPU architectures that don't support it
if ARCH != 'x86_64':
preconfigopts = 'sed -i "s|PFLAG = -m\\$(PREC)|PFLAG = |" mf/Makefile.defs.linux-gomp* && '

configopts = '--disable-cxx --disable-fortran --disable-ompi '

# Comment it out if you have Xeon Phi:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ builddependencies = [
('binutils', '2.40'),
]

# remove -m64 flag from PFLAG variable in Makefiles for CPU architectures that don't support it
if ARCH != 'x86_64':
preconfigopts = 'sed -i "s|PFLAG = -m\\$(PREC)|PFLAG = |" mf/Makefile.defs.linux-gomp* && '

configopts = '--disable-cxx --disable-fortran --disable-ompi '

# Comment it out if you have Xeon Phi:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ builddependencies = [
('binutils', '2.40'),
]

# remove -m64 flag from PFLAG variable in Makefiles for CPU architectures that don't support it
if ARCH != 'x86_64':
preconfigopts = 'sed -i "s|PFLAG = -m\\$(PREC)|PFLAG = |" mf/Makefile.defs.linux-gomp* && '

configopts = '--disable-cxx --disable-fortran --disable-ompi '

# Comment it out if you have Xeon Phi:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ builddependencies = [
('binutils', '2.42'),
]

# remove -m64 flag from PFLAG variable in Makefiles for CPU architectures that don't support it
if ARCH != 'x86_64':
preconfigopts = 'sed -i "s|PFLAG = -m\\$(PREC)|PFLAG = |" mf/Makefile.defs.linux-gomp* && '

configopts = '--disable-cxx --disable-fortran --disable-ompi '

# Comment it out if you have Xeon Phi:
Expand Down
Loading