1

このスクリプトを Xcode 実行スクリプトとして実行して、graphviz をビルドしています。

if [ ! "${BUILT_PRODUCTS_DIR}/graphviz/Makefile" -nt "${SRCROOT}/graphviz/configure" ]
then
  GVROOT="${SRCROOT}/graphviz"

  # figure out optimization
  OPT="${GCC_OPTIMIZATION_LEVEL}"
  if [ -z "${OPT}" ]
    then
    OPT="s"
  fi

  FLAGS="-fexceptions -gdwarf-2 -isysroot ${SDKROOT} -miphoneos-version-min=${IPHONEOS_DEPLOYMENT_TARGET} -mthumb -O${OPT}"

  # figure out architecture
  for ARCH in ${ARCHS}
  do
    FLAGS="${FLAGS} -arch ${ARCH}"
  done

  # figure out preprocessor defines
  for DEFINITION in ${GCC_PREPROCESSOR_DEFINITIONS}
  do
    FLAGS="${FLAGS} -D${DEFINITION}"
  done

  mkdir -p ${BUILT_PRODUCTS_DIR}/graphviz
  cd ${BUILT_PRODUCTSx_DIR}/graphviz

  ${GVROOT}/configure \
    --build=${NATIVE_ARCH_ACTUAL}-apple-darwin11 \
    --host=${NATIVE_ARCH}-apple-darwin11 \
    --disable-dependency-tracking \
    --enable-shared=no \
    --enable-static=yes \
    --enable-ltdl=no \
    --enable-swig=no \
    --enable-tcl=no \
    --srcdir=${GVROOT} \
    --with-codegens=no \
    --with-graph=yes \
    --with-expat=no \
    --with-fontconfig=no \
    --with-freetype2=no \
    --with-ipsepcola=yes \
    --with-libgd=no \
    --with-quartz=yes \
    --with-visio=yes \
    --with-x=no \
    CC="${PLATFORM_DEVELOPER_BIN_DIR}/clang" \
    CPP="${PLATFORM_DEVELOPER_BIN_DIR}/clang -E" \
    CXX="${PLATFORM_DEVELOPER_BIN_DIR}/clang++" \
    OBJC="${PLATFORM_DEVELOPER_BIN_DIR}/clang" \
    LD="${PLATFORM_DEVELOPER_BIN_DIR}/ld" \
    CFLAGS="${FLAGS}" \
    CXXFLAGS="${FLAGS} -fvisibility-inlines-hidden" \
    OBJCFLAGS="${FLAGS}" 2>/dev/null
fi

次のコンパイラ出力が得られます。

checking build system type... x86_64-apple-darwin11
checking host system type... i386-apple-darwin11
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for i386-apple-darwin11-strip... no
checking for strip... strip
checking for a thread-safe mkdir -p... /Users/michaelciccotti/Documents/Projects/Tests/LowGraphvix/graphviz/config/install-sh -c -d
checking for gawk... no
checking for mawk... no
checking for nawk... no
checking for awk... awk
checking whether make sets $(MAKE)... yes
Command /bin/sh failed with exit code 1

何が問題なのかをどのように把握できますか?

4

1 に答える 1

0

Xcodeをルートとして実行することで、何が問題なのかを突き止めました。これにより、より詳細な失敗メッセージが表示されました(理由はわかりません)。私の問題は、ディレクトリに以前のビルドがあったため、「distclean を作成」する必要があることでした。

于 2012-05-04T03:39:07.130 に答える