Skip to content
Snippets Groups Projects
Commit 031f06c9 authored by Rene Brun's avatar Rene Brun
Browse files

From Axel:

I forgot: also the binaries have to link against Cintex (if dict
type!=cint). See attached patch. That's not going to trigger a major
rebuild, though.


git-svn-id: http://root.cern.ch/svn/root/trunk@13692 27541ba8-7e3a-0410-8455-c3a389f83636
parent 0eeca691
No related branches found
No related tags found
No related merge requests found
......@@ -206,6 +206,9 @@ RPATH := -L$(LPATH)
CINTLIBS := -lCint
NEWLIBS := -lNew
ROOTLIBS := -lCore -lCint -lHist -lGraf -lGraf3d -lGpad -lTree -lMatrix
ifneq ($(ROOTDICTTYPE),cint)
ROOTLIBS := $(ROOTLIBS) -lCintex -lReflex
endif
RINTLIBS := -lRint
PROOFLIBS := -lProof -lTreePlayer -lThread
else
......@@ -215,6 +218,9 @@ ROOTLIBS := $(LPATH)/libCore.lib $(LPATH)/libCint.lib \
$(LPATH)/libHist.lib $(LPATH)/libGraf.lib \
$(LPATH)/libGraf3d.lib $(LPATH)/libGpad.lib \
$(LPATH)/libTree.lib $(LPATH)/libMatrix.lib
ifneq ($(ROOTDICTTYPE),cint)
ROOTLIBS := $(ROOTLIBS) $(LPATH)/libCintex.lib $(LPATH)/libReflex.lib
endif
RINTLIBS := $(LPATH)/libRint.lib
PROOFLIBS := $(LPATH)/libProof.lib $(LPATH)/libTreePlayer.lib \
$(LPATH)/libThread.lib
......@@ -328,7 +334,7 @@ CORELIB := $(LPATH)/libCore.$(SOEXT)
ifeq ($(EXPLICITLINK),yes)
MAINLIBS = $(CORELIB) $(CINTLIB)
ifneq ($(ROOTDICTTYPE),cint)
MAINLIBS := $(MAINLIBS) $(REFLEXLIB) $(CINTEXLIB)
MAINLIBS := $(MAINLIBS) $(CINTEXLIB) $(REFLEXLIB)
endif
MAKE_VERSION_MAJOR = $(word 1,$(subst ., ,$(MAKE_VERSION)))
MAKE_VERSION_MINOR = $(word 2,$(subst ., ,$(MAKE_VERSION)))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment