This commit is contained in:
gingerBill
2019-02-06 22:45:04 +00:00
2 changed files with 9 additions and 3 deletions
+7 -1
View File
@@ -8,11 +8,17 @@ os:
compiler: compiler:
- clang - clang
addons:
homebrew:
packages:
- llvm
script: script:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then export PATH="/usr/local/opt/llvm/bin:$PATH" ; fi
- make release - make release
- ./odin run examples/demo/demo.odin - ./odin run examples/demo/demo.odin
- ./odin check examples/demo/demo.odin -vet - ./odin check examples/demo/demo.odin -vet
notifications: notifications:
email: false email: false
+2 -2
View File
@@ -5,8 +5,8 @@ CC=clang
OS=$(shell uname) OS=$(shell uname)
ifeq ($(OS), DARWIN) ifeq ($(OS), Darwin)
LDFLAGS=$(LDFLAGS) -liconv LDFLAGS:=$(LDFLAGS) -liconv
endif endif
all: debug demo all: debug demo