File tree Expand file tree Collapse file tree 5 files changed +9
-9
lines changed
Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 2323 fetch-depth : 1
2424
2525 - name : Compile binary programs
26- run : make pgms
26+ run : make CXX=g++-13 pgms
2727
2828 - name : Check for carriage returns
2929 run : |
Original file line number Diff line number Diff line change 2121 fetch-depth : 1
2222
2323 - name : Compile binary programs
24- run : make pgms
24+ run : make CXX=g++-13 pgms
2525
2626 - name : Extract issue timestamps from published files
2727 run : |
Original file line number Diff line number Diff line change 5151 run : make dates
5252
5353 - name : Build programs
54- run : make pgms -j 4
54+ run : make CXX=g++-13 pgms -j4
5555
5656 - name : Generate HTML lists
5757 run : make lists
Original file line number Diff line number Diff line change 11# The binaries that we want to build
22PGMS := bin/lists bin/section_data bin/toc_diff bin/list_issues bin/set_status
3- CXXFLAGS := -std=c++17 -Wall -g -O2 -D_GLIBCXX_ASSERTIONS
3+ CXXFLAGS := -std=c++20 -Wall -g -O2 -D_GLIBCXX_ASSERTIONS
44
55# Running 'make debug' is equivalent to 'make DEBUG=1'
66ifeq "$(MAKECMDGOALS ) " "debug"
Original file line number Diff line number Diff line change 11echo " Use -m32 switch to force 32-bit build"
2- g++ %* -std=c++17 -DNDEBUG -O2 -o bin/lists.exe src/date.cpp src/issues.cpp src/status.cpp src/sections.cpp src/mailing_info.cpp src/report_generator.cpp src/metadata.cpp src/lists.cpp
3- g++ %* -std=c++17 -o bin/section_data.exe src/section_data.cpp
4- g++ %* -std=c++17 -o bin/toc_diff.exe src/toc_diff.cpp
5- g++ %* -std=c++17 -DNDEBUG -O2 -o bin/list_issues.exe src/date.cpp src/issues.cpp src/status.cpp src/sections.cpp src/metadata.cpp src/list_issues.cpp
6- g++ %* -std=c++17 -DNDEBUG -O2 -o bin/set_status.exe src/set_status.cpp src/status.cpp
2+ g++ %* -std=c++20 -DNDEBUG -O2 -o bin/lists.exe src/date.cpp src/issues.cpp src/status.cpp src/sections.cpp src/mailing_info.cpp src/report_generator.cpp src/metadata.cpp src/lists.cpp
3+ g++ %* -std=c++20 -o bin/section_data.exe src/section_data.cpp
4+ g++ %* -std=c++20 -o bin/toc_diff.exe src/toc_diff.cpp
5+ g++ %* -std=c++20 -DNDEBUG -O2 -o bin/list_issues.exe src/date.cpp src/issues.cpp src/status.cpp src/sections.cpp src/metadata.cpp src/list_issues.cpp
6+ g++ %* -std=c++20 -DNDEBUG -O2 -o bin/set_status.exe src/set_status.cpp src/status.cpp
77
You can’t perform that action at this time.
0 commit comments