Skip to content

Commit

Permalink
Update Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeshingles committed Nov 11, 2024
1 parent 9098f0a commit 8456abd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/cislowtestmode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ on:
- classic*
workflow_dispatch:

concurrency:
# Use github.run_id on main or develop branch (unlimited concurrency)
# Use github.ref otherwise, so that it's unique per branch or PR
group: ${{ github.workflow }}-${{ github.ref_protected && github.run_id || github.ref }}
cancel-in-progress: false
# concurrency:
# # Use github.run_id on main or develop branch (unlimited concurrency)
# # Use github.ref otherwise, so that it's unique per branch or PR
# group: ${{ github.workflow }}-${{ github.ref_protected && github.run_id || github.ref }}
# cancel-in-progress: false

jobs:
citestmode:
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ else ifneq '' '$(findstring g++,$(COMPILER_VERSION))'
COMPILER_NAME := GCC
CXXFLAGS += -flto=auto
# std::stacktrace is available in GCC 14 and later
ifeq ($(shell expr $(COMPILER_VERSION_NUMBER_MAJOR) \>= 14),1)
ifeq ($(shell expr $(COMPILER_VERSION_NUMBER_MAJOR) \>= 14),1)
# CXXFLAGS += -rdynamic
# CXXFLAGS += -DENABLE_STACKTRACE=true
# LDFLAGS += -lstdc++exp
endif
endif
else ifneq '' '$(findstring nvc++,$(COMPILER_VERSION))'
COMPILER_NAME := NVHPC
else
Expand Down

0 comments on commit 8456abd

Please sign in to comment.