Ignore:
Timestamp:
10/18/13 13:26:13 (11 years ago)
Author:
tbretz
Message:
Added a check for its existance and potentially use colorgcc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Mars/Makefile.conf.linux

    r17129 r17247  
    99# compilers
    1010
     11ifeq ($(shell which colorgcc), )
    1112CC       := gcc
    1213CXX      := g++
     14else
     15CC       := colorgcc
     16CXX      := colorgcc
     17endif
     18
     19LINKER   := g++
    1320F77      := f77
    1421AR       := ar -rc
     
    1926OPTIM    := -O5 -std=c++0x -Wall -Winit-self -fno-exceptions -fPIC -Wpointer-arith -Wcast-align -Woverloaded-virtual
    2027# ggc 4.3: removed -Wshadow -fnonnull-objects -Wtraditional -Wnested-externs -Wconversion
    21 DEBUG    := 
     28DEBUG    :=
    2229ARCHDEF  := -D__LINUX__
    2330SOFLAG   := -shared
Note: See TracChangeset for help on using the changeset viewer.