blob: c3df0fb79e6c8fe9edb95466c0c0119a3b345ba9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--- vcflib/Makefile.orig 2018-03-23 18:36:07 UTC
+++ vcflib/Makefile
@@ -136,8 +136,8 @@ all: $(OBJECTS) $(BINS)
GIT_VERSION := $(shell git describe --abbrev=4 --dirty --always)
-CXX = g++
-CXXFLAGS = -O3 -D_FILE_OFFSET_BITS=64 -std=c++0x
+CXX ?= g++
+CXXFLAGS += -D_FILE_OFFSET_BITS=64 -std=c++0x
#CXXFLAGS = -O2
#CXXFLAGS = -pedantic -Wall -Wshadow -Wpointer-arith -Wcast-qual
|