diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-03-28 07:15:00 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-03-28 07:15:00 (GMT) |
commit | 2a827b00c2141245d703bf4b1a5d53045124ee85 (patch) | |
tree | b9c53c776f72278e51f191ed52fcdb16dc28c863 /.github | |
parent | 7b333ba9056bfea7a16de7fa67405a0a9279de14 (diff) | |
download | tcl-2a827b00c2141245d703bf4b1a5d53045124ee85.zip tcl-2a827b00c2141245d703bf4b1a5d53045124ee85.tar.gz tcl-2a827b00c2141245d703bf4b1a5d53045124ee85.tar.bz2 |
Add enable-symbols=all builds to various platforms
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/linux-build.yml | 1 | ||||
-rw-r--r-- | .github/workflows/mac-build.yml | 1 | ||||
-rw-r--r-- | .github/workflows/win-build.yml | 3 |
3 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/linux-build.yml b/.github/workflows/linux-build.yml index 9b37ce4..6b643bb 100644 --- a/.github/workflows/linux-build.yml +++ b/.github/workflows/linux-build.yml @@ -10,6 +10,7 @@ jobs: - "--disable-shared" - "--enable-symbols" - "--enable-symbols=mem" + - "--enable-symbols=all" - "CFLAGS=-DTCL_UTF_MAX=4" - "CFLAGS=-DTCL_UTF_MAX=6" defaults: diff --git a/.github/workflows/mac-build.yml b/.github/workflows/mac-build.yml index 1160a26..86b9bfd 100644 --- a/.github/workflows/mac-build.yml +++ b/.github/workflows/mac-build.yml @@ -30,6 +30,7 @@ jobs: - "--disable-shared" - "--enable-symbols" - "--enable-symbols=mem" + - "--enable-symbols=all" defaults: run: shell: bash diff --git a/.github/workflows/win-build.yml b/.github/workflows/win-build.yml index a470f50..1f530ab 100644 --- a/.github/workflows/win-build.yml +++ b/.github/workflows/win-build.yml @@ -15,7 +15,7 @@ jobs: - "" - "OPTS=static,msvcrt" - "OPTS=symbols" - - "OPTS=memdbg" + - "OPTS=symbols STATS=compdbg,memdbg" # Using powershell means we need to explicitly stop on failure steps: - name: Checkout @@ -53,6 +53,7 @@ jobs: - "--disable-shared" - "--enable-symbols" - "--enable-symbols=mem" + - "--enable-symbols=all" # Using powershell means we need to explicitly stop on failure steps: - name: Install MSYS2 |