fix(jpegxl)

closes #5409
This commit is contained in:
Jacob Heider 2024-03-07 20:52:27 -05:00 committed by Jacob Heider
parent 533e481097
commit 8a7e8e8d98

View file

@ -38,21 +38,27 @@ build:
find third_party -not -name sjpeg -and -not -name libjpeg-turbo -mindepth 1 -maxdepth 1 -type d | xargs rm -rf find third_party -not -name sjpeg -and -not -name libjpeg-turbo -mindepth 1 -maxdepth 1 -type d | xargs rm -rf
working-directory: .. working-directory: ..
- cmake .. - cmake .. $ARGS
-DCMAKE_BUILD_TYPE=Release
-DCMAKE_INSTALL_PREFIX={{prefix}}
-DBUILD_TESTING=OFF
-DJPEGXL_ENABLE_SKCMS=OFF
-DJPEGXL_ENABLE_BENCHMARK=OFF
-DJPEGXL_VERSION={{version}}
- make --jobs {{ hw.concurrency }} install - make --jobs {{ hw.concurrency }} install
env:
ARGS:
- -DCMAKE_BUILD_TYPE=Release
- -DCMAKE_INSTALL_PREFIX={{prefix}}
- -DBUILD_TESTING=OFF
- -DJPEGXL_ENABLE_SKCMS=OFF
- -DJPEGXL_ENABLE_BENCHMARK=OFF
- -DJPEGXL_VERSION={{version}}
linux/x86-64:
ARGS:
# ld.lld: error: undefined reference due to --no-allow-shlib-undefined: __extendhfsf2
- -DCMAKE_EXE_LINKER_FLAGS=-Wl,--allow-shlib-undefined
test: | test:
cjxl fixture.jpeg out.jxl - cjxl fixture.jpeg out.jxl
cc fixture1.c -ljxl - cc fixture1.c -ljxl
./a.out - ./a.out
cc fixture2.c -ljxl_threads - cc fixture2.c -ljxl_threads
./a.out - ./a.out