Skip to content

Commit 0b42f90

Browse files
committed
Merge branch 'master' of https://github.com/tilkinsc/LuaConsole
2 parents df6cab2 + 22b535c commit 0b42f90

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
dist: trusty
3535
- stage: build
3636
script: ./travis.mac.sh
37-
osx_image: xcode10.2
37+
osx_image: xcode12.2
3838
os: osx
3939

4040

build.mac.sh

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
[[ -z "${debug}" ]] && debug="0"
3030
[[ -z "${debug_coverage}" ]] && debug_coverage="0"
3131
[[ -z "${GCC}" ]] && GCC="gcc"
32-
[[ -z "${OBJCOPY}" ]] && OBJCOPY="objcopy"
32+
[[ -z "${OBJCOPY}" ]] && OBJCOPY="llvm-objcopy"
3333
[[ -z "${AR}" ]] && AR="ar"
3434
[[ -z "${MAKE}" ]] && MAKE="make"
3535
[[ -z "${GCC_VER}" ]] && GCC_VER="gnu99"
@@ -60,13 +60,13 @@ build and package accepts:
6060
Listens to these variables:
6161
debug, debug_coverage, GCC, OBJCOPY, AR, MAKE, GCC_VER
6262
63-
debug - 0, 1 Default: 0
64-
debug_coverage - 0, 1 Default: 0
65-
GCC - gcc binary Default: gcc
66-
OBJCOPY - objcopy binary Default: objcopy
67-
AR - ar binary Default: ar
68-
MAKE - make binary Default: make
69-
GCC_VER - stdlib version Default: gnu99
63+
debug - 0, 1 Default: 0
64+
debug_coverage - 0, 1 Default: 0
65+
GCC - gcc binary Default: gcc
66+
OBJCOPY - llvm-objcopy binary Default: llvm-objcopy
67+
AR - ar binary Default: ar
68+
MAKE - make binary Default: make
69+
GCC_VER - stdlib version Default: gnu99
7070
7171
Notes:
7272
After building, you may need to configure LD_LIBRARY_PATH to bin/Release/* to test
@@ -308,7 +308,7 @@ if [[ "$1" == "driver" ]]; then
308308

309309
# Build install
310310
mv luaw "${root}"
311-
cp -r ${resdir}/* "${root}/res"
311+
cp -r ${resdir} "${root}/res"
312312
cp -r ${rootdir}/* "${root}"
313313
build_install "${2}"
314314

0 commit comments

Comments
 (0)