5

我收到以下错误

./configure: line 11162: PKG_PROG_PKG_CONFIG: command not found

当这是代码在(kivy-ios/tools-build-sdlmixer.sh)中执行时

if [ ! -f libtremor/tremor/.libs/libvorbisidec.a ]; then
        try cd libtremor/tremor
        echo > asm_arm.h
        CC="$ARM_CC" AR="$ARM_AR" \
        LDFLAGS="$ARM_LDFLAGS" CFLAGS="$ARM_CFLAGS" \
        OGG_CFLAGS="-I../../libogg/include" \
        OGG_LDFLAGS="-L../../libogg/src/.libs" \
        PKG_CONFIG_LIBDIR="../../libogg" \
        ACLOCAL_FLAGS="-I $DESTROOT/share/aclocal -I `aclocal --print-ac-dir`" ./autogen.sh \
            --prefix=$DESTROOT \
                --disable-shared \
                --host=arm-apple-darwin \
                --enable-static=yes \
                --enable-shared=no
        try make
        try make install
        try cd ../..
fi

我的 pkg-config 应用程序在我的 PATH (/usr/local/bin) 中。我还尝试将命令行上的 PKG_CONFIG_PATH 导出到 /usr/local/bin/pkg-config 和 /usr/local/lib/pkgconfig。我也尝试将 LD_LIBRARY_PATH 导出到各种路径(不确定它应该指向哪里),但这似乎也无济于事。

我在我的系统上阅读了有关多个 aclocal 目录的内容,这可能是有问题的,但我不清楚如何解决该问题或确定其问题。

这个 linux 构建新手(在 OSX 上)感谢任何帮助。

4

2 回答 2

7

当该脚本调用时autogen.shaclocal找不到pkg.m4M4 宏包,它附带pkg-config并提供了PKG_PROG_PKG_CONFIG宏。安装在哪里,正在搜索pkg-config什么目录?aclocal

于 2013-06-14T10:38:22.803 回答
1

对于 DockerImage,linux Alpine 也有同样的问题。

通过安装解决了它autoconfautomake并且pkgconf

apk --update add autoconf automake build-base libtool nasm pkgconf
于 2021-02-06T13:34:09.200 回答