ref: 1f53d38c8b3c5d1a92e4ef36a0c7124a270955e0
parent: 8aca2030c46df6deae7d3dc544720decbff74721
parent: 18a4354b6e0c1323022975d12751139ceb4aa5c0
author: Ethan Hugg <ethanhugg@gmail.com>
date: Thu Jan 23 04:22:49 EST 2014
Merge pull request #196 from mstorsjo/build-release-default Make BUILDTYPE=Release the default if no make parameters are specified
--- a/.travis.yml
+++ b/.travis.yml
@@ -8,5 +8,5 @@
#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
--- a/Makefile
+++ b/Makefile
@@ -11,6 +11,7 @@
CFLAGS_DEBUG=-g
CFLAGS_M32=-m32
CFLAGS_M64=-m64
+BUILDTYPE=Release