Skip to content

Commit

Permalink
Remove unsupported -auto C flag from Intel oneAPI stanza (#2059)
Browse files Browse the repository at this point in the history
TYPE: bug fix

KEYWORDS: intel, compilation, oneapi

SOURCE: internal

DESCRIPTION OF CHANGES:
Problem:
The `-auto` flag is not supported by the Intel C compilers. See https://www.intel.com/content/www/us/en/docs/cpp-compiler/developer-guide-reference/2021-10/alphabetical-option-list.html for full list of supported icx flags.

Solution:
Remove the flag, no output changes should happen as the flag was previously being ignored if it didn't cause an error.
  • Loading branch information
islas authored Sep 11, 2024
1 parent 0ca0d96 commit a6056c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/configure.defaults
Original file line number Diff line number Diff line change
Expand Up @@ -2132,7 +2132,7 @@ DESCRIPTION = INTEL ($SFC/$SCC) : oneAPI LLVM
DMPARALLEL = # 1
OMPCPP = # -D_OPENMP
OMP = # -qopenmp -fpp -auto
OMPCC = # -qopenmp -auto
OMPCC = # -qopenmp
SFC = ifx
SCC = icx
CCOMP = icx
Expand Down

0 comments on commit a6056c1

Please sign in to comment.