Skip to content

Commit

Permalink
[GA] try to force c++17
Browse files Browse the repository at this point in the history
freebsd:
- go back to 13.2
- use c++17 instead of c++11
i386-linux:
- try to force c++17

git-svn-id: svn://tug.org/texlive/trunk/Build/source@72684 c570f23f-e606-0410-a88d-b1316a301751
  • Loading branch information
norbusan committed Oct 28, 2024
1 parent dd7e698 commit 48de0bd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/scripts/build-tl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,10 @@ case "$arch" in
export CC=gcc
export CXX=g++
export CFLAGS=-D_NETBSD_SOURCE
export CXXFLAGS='-D_NETBSD_SOURCE -std=c++11'
export CXXFLAGS='-D_NETBSD_SOURCE -std=c++17'
;;
i386-linux)
export CXXFLAGS='-std=c++17'
;;
esac
export TL_MAKE_FLAGS
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ jobs:
uses: vmactions/freebsd-vm@v1
if: ${{ matrix.os == 'freebsd' && (matrix.ci_build || matrix.release_build) }}
with:
release: '14.1'
release: '13.2'
usesh: true
run: |
cd repo
Expand Down

0 comments on commit 48de0bd

Please sign in to comment.