Skip to content

Commit 990963c

Browse files
committed
Update Makefile
1 parent 6fc2d80 commit 990963c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/scriptcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,5 +170,5 @@ jobs:
170170
- name: dmake
171171
if: matrix.python-version == '3.11'
172172
run: |
173-
make -j$(nproc) run-dmake
173+
make dmake && ./dmake --release
174174
git diff --exit-code

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ ifeq (clang++, $(findstring clang++,$(CXX)))
137137
CPPCHK_GLIBCXX_DEBUG=
138138
endif
139139
ifndef CXXFLAGS
140-
CXXFLAGS=-pedantic -Wall -Wextra -Wcast-qual -Wno-deprecated-declarations -Wfloat-equal -Wmissing-declarations -Wmissing-format-attribute -Wno-long-long -Wpacked -Wredundant-decls -Wundef -Wno-shadow -Wno-missing-field-initializers -Wno-missing-braces -Wno-sign-compare -Wno-multichar $(CPPCHK_GLIBCXX_DEBUG) -g
140+
CXXFLAGS=-std=c++0x -O2 -DNDEBUG -Wall -Wno-sign-compare
141141
endif
142142

143143
ifeq (g++, $(findstring g++,$(CXX)))

0 commit comments

Comments
 (0)