File tree Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 1+ NEXT RELEASE
2+ ------------
3+
4+ * Fixed for projects using Xcode "New Build System"
5+
6+
17Version 1.3.1
28-------------
39_ 24 Sep 2017_
Original file line number Diff line number Diff line change 55scripts=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd ) "
66source " ${scripts} /env.sh"
77
8+ # For New Build System, hard-code to 64-bit simulator
9+ if [ ${CURRENT_ARCH} = " undefined_arch" ]
10+ then
11+ ARCHITECTURE=" x86_64"
12+ else
13+ ARCHITECTURE=${CURRENT_ARCH}
14+ fi
15+
816LCOV_PATH=" ${scripts} /lcov-1.13/bin"
9- OBJ_DIR=" ${OBJECT_FILE_DIR_normal} /${CURRENT_ARCH } "
17+ OBJ_DIR=" ${OBJECT_FILE_DIR_normal} /${ARCHITECTURE } "
1018
1119# Fix for the new LLVM-COV that requires gcov to have a -v parameter
1220LCOV () {
13- " ${LCOV_PATH} /lcov" " $@ " --gcov-tool " ${scripts} /llvm-cov-wrapper.sh"
21+ " ${LCOV_PATH} /lcov" " $@ " --gcov-tool " ${scripts} /llvm-cov-wrapper.sh"
1422}
You can’t perform that action at this time.
0 commit comments