swh:1:snp:d80eec3f654c152adbdd6e641362bcb340d39fe2
Raw File
Tip revision: 1cde932d15a348df17e9dafce17a79299b9d8a2d authored by Jiqiang Guo on 06 March 2013, 21:02:05 UTC
upgrade rstan verion to 1.2.0
Tip revision: 1cde932
os_mac
##
# This file should modify the following variables
# as appropriate:
#   - CFLAGS
#   - CFLAGS_GTEST
#   - PCH
##

ifeq (g++,$(CC_TYPE))
  CFLAGS += -Wno-unused-function
  VERSION := $(CC_MAJOR).$(CC_MINOR)
  ifeq (4.2,$(CC_MAJOR).$(CC_MINOR))
    PCH = 
  else
    PCH = .gch
  endif
endif
ifeq (clang++,$(CC_TYPE))
  CFLAGS += -Wno-unused-function
  CFLAGS += -Wno-tautological-compare
  CFLAGS_GTEST += -Wc++11-extensions
  #PCH = .pch
endif
back to top