【问题标题】:XCode C/C++ Flags Bash ScriptXCode C/C++ 标志 Bash 脚本
【发布时间】:2013-01-18 18:08:55
【问题描述】:

我试图在 XCode 上运行以下命令,将其作为 C/C++ 标志添加到我可以从在我的项目的运行脚本阶段执行的 shell 脚本中获取内部版本号。

在另一个类 Unix 系统上使用 GCC 可以正常工作:

-D__BUILD_VERSION=$(cat build_number)

好吧,XCode 我正在尝试使用以下内容:

-D__BUILD_VERSION=$(cat $PROJECT_DIR/build_number)

但它不起作用,我做错了什么?在 XCode 中,如何将 cat build_number 的结果分配给 __BUILD_VERSION 定义的变量?

【问题讨论】:

  • 我也遇到了这个问题并创建了一个新的 q:stackoverflow.com/questions/31524925/… 我知道这已经有几年了,目前可能不适用于你,但我也设法让它工作(见我在同一页上的回答)

标签: xcode xcode4


【解决方案1】:

如果您尝试在 Xcode 编译构建阶段设置该值,您可能会遇到麻烦,因为我不知道任何解释性操作都会与您尝试设置的设置一起发生正在尝试设置它们。

对于自动设置版本号,我有一个更复杂的半自动版本和自动编号方案,所以我不必记住要更改,或者我可以提供我想要的版本号但总是增加内部版本号,在这两种情况下,它都会将内部版本号放在 iOS 系统设置中显示的应用设置中的“关于”框中。

您可能不需要太多,但有一些技巧可以帮助您获取和编写信息,这些技巧可能对您有用,并可能为您的问题找到解决方案。


以下脚本的灵感来自我目前无法找到的有关如何执行此操作的堆栈溢出答案。我做了更多的工作,因为(a)我希望版本号显示在系统设置中显示的设置中; (b) Xcode 缓存 Info.plist 文件的内容,所以这样做并不像我预期的那么简单。

在编译之前的构建阶段,我运行以下命令(仅在安装时运行脚本 未选中

sh xolawareStashProductSettings.sh

xolawareStashProductSettings.sh 的内容检查 info.plist 文件的 git 状态,如果不干净,将其暂时存放在一边以备日后恢复。

#!/bin/sh

#
# should be run prior to the Copy Bundle Resources step
# and prior to any version information modifier scripts

INFOPLIST_GIT_PATH=${PROJECT}/`basename ${INFOPLIST_FILE}`
echo "-- Temp Hold ${INFOPLIST_GIT_PATH} Script --"

set -e

# a fallback in case the user has made changes to the file
if [ `git status --porcelain ${INFOPLIST_GIT_PATH} ]|wc -l` -gt 0 ]; then
    echo cp -p ${INFOPLIST_GIT_PATH} ${TARGET_TEMP_DIR}
    cp -p ${INFOPLIST_GIT_PATH} ${TARGET_TEMP_DIR}
fi

脚本 #2(仅在安装时运行脚本 未选中):

sh xolawareStashSettingsBundleRootPlist.sh

xolawareStashSettingsBundleRootPlist.sh的内容与脚本1的内容类似。

#!/bin/sh
#
# should be run prior to the Copy Bundle Resources step
# and prior to any version information modifier scripts

echo '-- Temp Hold Settings.bundle/Root.plist Script --'

ROOT_PLIST=${PROJECT}/Resources/Settings.bundle/Root.plist

set -e

# a fallback in case the user has made changes to the file
if [ `git status --porcelain ${ROOT_PLIST} ]|wc -l` -gt 0 ]; then
    echo cp -p ${ROOT_PLIST} ${TARGET_TEMP_DIR}
    cp -p ${ROOT_PLIST} ${TARGET_TEMP_DIR}
fi

脚本 #3(仅在安装时运行脚本 选中

sh xolawareIncrementProductSettingsBuildNumber.sh

xolawareIncrementProductSettingsBuildNumber 的内容用 plistbuddy 看是什么,然后加一:

#!/bin/sh
#
# this should be prior to xolawareAboutInfoVersionInfoInSettings.sh

echo "-- Auto-Increment ${INFOPLIST_FILE} Build Version Install Script --"

PLISTBUDDYCMD="/usr/libexec/PlistBuddy -c"
CONFIGURATION_BUILD_SETTINGS_PATH=${CONFIGURATION_BUILD_DIR}/${INFOPLIST_PATH}

CFBV=$(${PLISTBUDDYCMD} "Print :CFBundleVersion" ${PRODUCT_SETTINGS_PATH})
if [[ "${CFBV}" == "" ]]; then
    echo "No build number in ${PRODUCT_SETTINGS_PATH}"
    exit 2
fi

CFBV=$(expr $CFBV + 1)

set -e
echo ${PLISTBUDDYCMD} "Set :CFBundleVersion $CFBV" "${PRODUCT_SETTINGS_PATH}"
${PLISTBUDDYCMD} "Set :CFBundleVersion $CFBV" "${PRODUCT_SETTINGS_PATH}"
echo ${PLISTBUDDYCMD} "Set :CFBundleVersion $CFBV" "${CONFIGURATION_BUILD_SETTINGS_PATH}"
${PLISTBUDDYCMD} "Set :CFBundleVersion $CFBV" "${CONFIGURATION_BUILD_SETTINGS_PATH}"

脚本 #4(仅在安装时运行脚本 未选中

sh xolawareProductSettingsShortVersion-from-git.sh
sh xolawareAboutInfoVersionInfoInSettings.sh

xolawareProductSettingsShortVersion-from-git 的内容在一定程度上依赖于我在 git 中适当地标记我的分支,但如果我忘记了,它将使用自上次提交以来的提交次数来为我的构建自动版本化。

#!/bin/sh
#
# this should be run after xolawareStashSettingsBundleRootPlist.sh
# and prior to xolawareAboutInfoVersionInfoInSettings.sh

echo '-- Get Product Settings Short Version String from git describe --'

PLISTBUDDYCMD="/usr/libexec/PlistBuddy -c"
CONFIGURATION_BUILD_SETTINGS_PATH=${CONFIGURATION_BUILD_DIR}/${INFOPLIST_PATH}

CFBVS=`git describe|awk '{split($0,a,"-"); print a[1]}'`
CFBVSI=`git describe|awk '{split($0,a,"-"); print a[2]}'`
if [[ "$CFBVSI" != "" ]]; then
    CFBVS=${CFBVS}.${CFBVSI}
fi

set -e
echo ${PLISTBUDDYCMD} "Set :CFBundleShortVersionString $CFBVS" "${PRODUCT_SETTINGS_PATH}"
${PLISTBUDDYCMD} "Set :CFBundleShortVersionString $CFBVS" "${PRODUCT_SETTINGS_PATH}"
echo ${PLISTBUDDYCMD} "Set :CFBundleShortVersionString $CFBVS" "${CONFIGURATION_BUILD_SETTINGS_PATH}"
${PLISTBUDDYCMD} "Set :CFBundleShortVersionString $CFBVS" "${CONFIGURATION_BUILD_SETTINGS_PATH}"

xolawareAboutInfoVersionInfoInSettings.sh 的内容将内容放在我想要的 Root.plist 中的 About 框中。它依赖于关于框是你的 settings.bundle 的 Root.plist 中的第一件事:

#!/bin/sh
#
# this should be invoked after xolawareStashInfoAndRootPlist.sh,
# xolawareIncrementProductSettingsBuildNumber.sh and 
# xolawareProductSettingsShortVersion-from-git.sh, and before
# the regular Copy Bundle Resources Build Phase

echo '-- Auto-Insert Version Info In System Settings Script --'

PLISTBUDDYCMD="/usr/libexec/PlistBuddy -c"
ROOT_PLIST=${PROJECT_DIR}/${PROJECT}/Resources/Settings.bundle/Root.plist

CFBSVS=`exec -c ${PLISTBUDDYCMD} "Print :CFBundleShortVersionString" ${PRODUCT_SETTINGS_PATH}`
CFBV=`exec -c ${PLISTBUDDYCMD} "Print :CFBundleVersion" ${PRODUCT_SETTINGS_PATH}`

set -e
echo ${PLISTBUDDYCMD} "Set :PreferenceSpecifiers:1:DefaultValue '${CFBSVS} (b${CFBV})'" ${ROOT_PLIST}
${PLISTBUDDYCMD} "Set :PreferenceSpecifiers:1:DefaultValue '${CFBSVS} (b${CFBV})'" ${ROOT_PLIST}

还有一些清理脚本要在编译、链接和复制捆绑资源阶段之后运行

sh xolawareStashRestoreSettingsBundleRootPlist.sh

这可能不是必需的,但我为发布版本调整了 Root.plist 中的其他项目,因此这会恢复调试版本的这些设置。

#!/bin/sh
#
# should be run as the second to last script in Build Phases, after the Copy Bundle Resources Phase

echo "-- Manual Restore $INFOPLIST_FILE Script --"

ROOT_PLIST=${PROJECT}/Resources/Settings.bundle/Root.plist

set -e

# first, see if it was stashed earlier due to uncommitted changes
if [ -e ${TARGET_TEMP_DIR}/Root.plist ]; then
    echo mv ${TARGET_TEMP_DIR}/Root.plist ${ROOT_PLIST}
    mv ${TARGET_TEMP_DIR}/Root.plist ${ROOT_PLIST}

# the better option when available: restore to the pristine state
elif [ `git status --porcelain ${ROOT_PLIST}|wc -l` -gt 0 ]; then
    echo git checkout -- ${ROOT_PLIST}
    git checkout -- ${ROOT_PLIST}
fi

最后,如果我自己还没有标记项目,则自动标记 git repo 的步骤:

sh xolawareProductSettings-git-commit-and-tag.sh


#!/bin/sh
#
# this should be run after xolawareAboutInfoVersionInfoInSettings.sh
# and xolawareProductSettingsShortVersion-from-git.sh

echo "-- ${INFOPLIST_FILE} git commit & tag Install Script --"

SCRIPT_VERSION=`/usr/libexec/PlistBuddy -c 'Print :CFBundleShortVersionString' ${INFOPLIST_FILE}`
SCRIPT_BUILD_NUMBER=`/usr/libexec/Plistbuddy -c 'Print :CFBundleVersion' ${INFOPLIST_FILE}`
if [ `git status --porcelain ${SCRIPT_INFO_PLIST}|wc -l` -gt 0 ]; then
    echo git commit -m '"'version ${SCRIPT_VERSION} build ${SCRIPT_BUILD_NUMBER}'"' ${INFOPLIST_FILE}
    git commit -m "version ${SCRIPT_VERSION} build ${SCRIPT_BUILD_NUMBER}" ${INFOPLIST_FILE}
fi
echo git tag -f ${SCRIPT_VERSION}
git tag -f -F /dev/null ${SCRIPT_VERSION}

【讨论】:

    【解决方案2】:

    试试:

    -D__BUILD_VERSION=`cat $PROJECT_DIR/build_number`
    

    注意“反引号” - 它们不是常规的单引号字符。

    【讨论】:

    • 反引号...谢谢一堆我知道答案很简单;)
    • Oups... 那不是 XCode 生成以下命令行:"-D__BUILD_VERSION=cat" "<mypath>build_number"
    【解决方案3】:

    一种可能是让第一个脚本将内部版本号放入环境变量中?不确定这是否可行,但它可能会。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2015-09-29
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2022-01-26
      • 2019-05-16
      相关资源
      最近更新 更多