Acontece que eu usei o zimg errado. O zimg correto é sekrit-twc/zimg
.
Estou tentando compilar o vapoursynth e encontrei um problema de linker que não entendo como resolver. Aqui está o que eu tenho até agora:
Eu compilei o zimg do github
github: buaazp/zimg
e tem um binário. Eu tirei vapoursynth daqui
github: vapoursynth/vapoursynth
e eu segui as instruções .
Quando tento executar ./configure
:
configure: error: Package requirements (zimg) were not met:
No package 'zimg' found
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.
Alternatively, you may set the environment variables ZIMG_CFLAGS
and ZIMG_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
Eu tentei corrigi-lo com:
export PKG_CONFIG_PATH=/home/test/zimg/bin/zimg
Mas ./configure
ainda não funcionou e teve o mesmo erro. Então eu tentei:
export ZIMG_CFLAGS=/home/test/zimg/src/
export ZIMG_LIBS=/home/test/zimg/build
E a verificação do zimg passou, mas não consegue vinculá-lo. O erro é este:
checking for ZIMG... yes
configure: error: failed to link zimg.
O que devo tentar em seguida?