Skip to content

Commit

Permalink
Merge pull request #19 from pseyfert/master
Browse files Browse the repository at this point in the history
use root-config -- fixes absence of libCint.so in ROOT6
  • Loading branch information
liang-sun committed Jan 7, 2016
2 parents 2fbdaee + 221d120 commit 6e9f07b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/simpleFit/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ CXX=nvcc
LD=g++
OutPutOpt = -o

CXXFLAGS = -O3 -arch=sm_20 -g
CXXFLAGS = -O3 -arch=sm_20 -g -std=c++11
CUDALIBDIR=lib64

UNAME=$(shell uname)
Expand Down Expand Up @@ -36,8 +36,8 @@ endif
# not just the fitting stuff included in the GooFit-local ripped library.
ifneq ($(ROOTSYS), )
CXXFLAGS += -DHAVE_ROOT=1
ROOT_INCLUDES = -I$(ROOTSYS)/include/
ROOT_LIBS = -L$(ROOTSYS)/lib/ -lCore -lCint -lRIO -lNet -lHist -lGraf -lGraf3d -lGpad -lTree -lRint -lMatrix -lPhysics -lMathCore -pthread -lThread -lMinuit2 -lMinuit -lFoam
ROOT_INCLUDES = -I$(shell root-config --incdir)
ROOT_LIBS = $(shell root-config --libs)
endif
WRKDIR = $(GOOFITDIR)/wrkdir/

Expand Down

0 comments on commit 6e9f07b

Please sign in to comment.