Merge pull request #196 from mstorsjo/build-release-default

Make BUILDTYPE=Release the default if no make parameters are specified
This commit is contained in:
Ethan Hugg 2014-01-23 09:22:49 -08:00
commit 1f53d38c8b
2 changed files with 2 additions and 1 deletions

View File

@ -8,5 +8,5 @@ before_install:
#link libcrypto for 32bit
- sudo ln -s /lib/i386-linux-gnu/libcrypto.so.1.0.0 /lib/i386-linux-gnu/libcrypto.so
install: make gtest-bootstrap
script: make -B ENABLE64BIT=Yes && make test && make -B ENABLE64BIT=Yes BUILDTYPE=Release && make test && make -B && make test && make -B BUILDTYPE=Release && make test
script: make -B ENABLE64BIT=Yes && make test && make -B ENABLE64BIT=Yes BUILDTYPE=Debug && make test && make -B && make test && make -B BUILDTYPE=Debug && make test

View File

@ -11,6 +11,7 @@ CFLAGS_OPT=-O3
CFLAGS_DEBUG=-g
CFLAGS_M32=-m32
CFLAGS_M64=-m64
BUILDTYPE=Release