diff options
| author | Hans Kristian Rosbach <hk-git@circlestorm.org> | 2024-12-17 23:02:32 +0100 |
|---|---|---|
| committer | Hans Kristian Rosbach <hk-git@circlestorm.org> | 2024-12-17 23:02:32 +0100 |
| commit | 80fffd72f316df980bb15ea0daf06ba22e3583ec (patch) | |
| tree | c6d51d423ab594b3914d245fd4920d1b47104a12 /.github/workflows/cmake.yml | |
| parent | 43d74a223b30902b44b01bf4c4888d8deb35e253 (diff) | |
| download | Project-Tick-80fffd72f316df980bb15ea0daf06ba22e3583ec.tar.gz Project-Tick-80fffd72f316df980bb15ea0daf06ba22e3583ec.zip | |
Since we long ago make unaligned reads safe (by using memcpy or intrinsics),
it is time to replace the UNALIGNED_OK checks that have since really only been
used to select the optimal comparison sizes for the arch instead.
Diffstat (limited to '.github/workflows/cmake.yml')
| -rw-r--r-- | .github/workflows/cmake.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index a0f3bc57fa..02f98272ed 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -81,11 +81,11 @@ jobs: build-src-dir: ../zlib-ng/test/add-subdirectory-project readonly-project-dir: true - - name: Ubuntu GCC -O1 No Unaligned UBSAN + - name: Ubuntu GCC -O1 UBSAN os: ubuntu-latest compiler: gcc cxx-compiler: g++ - cmake-args: -DWITH_UNALIGNED=OFF -DWITH_SANITIZER=Undefined + cmake-args: -DWITH_SANITIZER=Undefined codecov: ubuntu_gcc_o1 cflags: -O1 |
