在xcode中配置脚本失败,退出代码为1 [英] configure script in xcode fails with exit code 1

查看:144
本文介绍了在xcode中配置脚本失败,退出代码为1的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在将此脚本作为Xcode运行脚本来运行来构建graphviz:

I'm running this script as an Xcode run script to build 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

我得到以下编译器输出:

I get the following compiler output:

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

我如何找出问题所在?

推荐答案

我通过以root身份运行Xcode找出了问题所在。这给了我更多详细的失败消息(不确定原因)。我的问题是我需要制作distclean,因为我在目录中拥有以前的版本。

I figured out what was going wrong by running Xcode as root. This gave me more verbose failure messages (not sure why). My problem was that I needed to 'make distclean' because I had a previous build in the directory.

这篇关于在xcode中配置脚本失败,退出代码为1的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆