diff --git a/.github/workflows/build_test.yaml b/.github/workflows/build_test.yaml index 4c06cea9..cf87e24b 100644 --- a/.github/workflows/build_test.yaml +++ b/.github/workflows/build_test.yaml @@ -17,9 +17,6 @@ jobs: with: submodules: 'true' - - name: Install ImageMagick - run: sudo apt install imagemagick - - name: Install GCC 14 run: | sudo apt-get update diff --git a/Source/cmake_core.cmake b/Source/cmake_core.cmake index 59772023..4862616d 100644 --- a/Source/cmake_core.cmake +++ b/Source/cmake_core.cmake @@ -192,6 +192,7 @@ macro(astcenc_set_properties ASTCENC_TARGET_NAME ASTCENC_VENEER_TYPE) $<${is_gnu_fe}:-Wno-format-nonliteral> $<${is_gnu_fe}:-Wno-reserved-identifier> $<${is_gnu_fe}:-Wno-cast-function-type> + $<${is_gnu_fe}:-freport-bug> # Force DWARF4 for Valgrind profiling $<$,${is_clang}>:-gdwarf-4> @@ -202,6 +203,7 @@ macro(astcenc_set_properties ASTCENC_TARGET_NAME ASTCENC_VENEER_TYPE) target_link_options(${ASTCENC_TARGET_NAME} PRIVATE # Use pthreads on Linux/macOS + $<${is_gnu_fe}:-freport-bug> $<$:-pthread>) if(${ASTCENC_ASAN})