Browse Source

Use quiet make for Travis CI.

tags/v0.2.7
Zhang Xianyi 12 years ago
parent
commit
cc522aa21d
2 changed files with 9 additions and 1 deletions
  1. +1
    -1
      .travis.yml
  2. +8
    -0
      Makefile.system

+ 1
- 1
.travis.yml View File

@@ -1,7 +1,7 @@
language: c
compiler:
- gcc
script: make DYNAMIC_ARCH=1 TARGET=NEHALEM NUM_THREADS=16
script: make QUIET_MAKE=1 DYNAMIC_ARCH=1 TARGET=NEHALEM NUM_THREADS=32

before_install:
- sudo apt-get install -qq gfortran


+ 8
- 0
Makefile.system View File

@@ -71,6 +71,10 @@ ifeq ($(DEBUG), 1)
GETARCH_FLAGS += -g
endif

ifeq ($(QUIET_MAKE), 1)
MAKE += -s
endif

ifndef NO_PARALLEL_MAKE
NO_PARALLEL_MAKE=0
endif
@@ -355,6 +359,10 @@ CCOMMON_OPT += -Wall
COMMON_PROF += -fno-inline
NO_UNINITIALIZED_WARN = -Wno-uninitialized

ifeq ($(QUIET_MAKE), 1)
CCOMMON_OPT += $(NO_UNINITIALIZED_WARN)
endif

ifdef NO_BINARY_MODE

ifeq ($(ARCH), mips64)


Loading…
Cancel
Save