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

fix: resolve omp simd error in mdd #2894

Merged
merged 3 commits into from
Sep 12, 2024
Merged
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
2 changes: 1 addition & 1 deletion dev/make/compiler_definitions/icx.mkl.32e.mk
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ CORE.SERV.COMPILER.icx = generic
COMPILER.lnx.icx = icx -m64 \
-Werror -Wreturn-type -qopenmp-simd

COMPILER.win.icx = icx $(if $(MSVC_RT_is_release),-MD, -MDd) -nologo -WX -Qopenmp-simd -Wno-deprecated-declarations
COMPILER.win.icx = icx $(if $(MSVC_RT_is_release),-MD -Qopenmp-simd, -MDd) -nologo -WX -Wno-deprecated-declarations

link.dynamic.lnx.icx = icx -m64 -no-intel-lib

Expand Down
Loading