Skip to content

Commit

Permalink
clang++ 20 fix: Wno-error=unused-command-line-argument
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeshingles committed Feb 1, 2025
1 parent 074cc76 commit dd79748
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ $(info detected compiler is $(COMPILER_NAME) major version $(COMPILER_VERSION_NU
CXXFLAGS += -std=c++23 -fstrict-aliasing

ifneq ($(COMPILER_NAME),NVHPC)
CXXFLAGS += -ftree-vectorize -Wunused-macros -Werror -Wno-error=unknown-pragmas -Wno-error=cast-function-type -MD -MP -ftrivial-auto-var-init=pattern
CXXFLAGS += -ftree-vectorize -Wunused-macros -Werror -Wno-error=unknown-pragmas -Wno-error=cast-function-type -Wno-error=unused-command-line-argument -MD -MP -ftrivial-auto-var-init=pattern
endif

# CXXFLAGS += -DUSE_SIMPSON_INTEGRATOR=true
Expand Down

0 comments on commit dd79748

Please sign in to comment.