我收到以下错误
./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 上)感谢任何帮助。