Skip to content
Snippets Groups Projects
Commit e1a5da14 authored by Axel Naumann's avatar Axel Naumann
Browse files

Include etc/cling headers in PCH; improve dependencies.

parent 3f77b23c
No related branches found
No related tags found
No related merge requests found
......@@ -498,7 +498,7 @@ STATICOBJLIST := $(ROOT_SRCDIR)/build/unix/staticobjectlist.sh
MAKESTATICLIB := $(ROOT_SRCDIR)/build/unix/makestaticlib.sh
MAKESTATIC := $(ROOT_SRCDIR)/build/unix/makestatic.sh
RECONFIGURE := $(ROOT_SRCDIR)/build/unix/reconfigure.sh
MAKEONEPCM := $(ROOT_SRCDIR)/build/unix/makeonepcm.sh $(ROOT_SRCDIR) "$(MODULES)"
MAKEONEPCM := $(ROOT_SRCDIR)/build/unix/makeonepcm.sh
ifeq ($(PLATFORM),win32)
MAKELIB := $(ROOT_SRCDIR)/build/win/makelib.sh
MAKECOMPDATA := $(ROOT_SRCDIR)/build/win/compiledata.sh
......@@ -1058,8 +1058,8 @@ changelog:
releasenotes:
@$(MAKERELNOTES)
etc/allDict.cxx.pch: $(ROOTCINTTMPDEP) $(ALLHDRS) $(ORDER_) $(ALLLIBS)
@$(MAKEONEPCM)
etc/allDict.cxx.pch: $(MAKEONEPCM) $(ROOTCINTTMPDEP) $(ALLHDRS) $(CLINGETCPCH) $(ORDER_) $(ALLLIBS)
$(MAKEONEPCM) $(ROOT_SRCDIR) "$(MODULES)" $(CLINGETCPCH)
ifeq ($(BUILDX11),yes)
ifeq ($(BUILDASIMAGE),yes)
......
......@@ -10,18 +10,18 @@ echo
echo Generating the one large pcm, patience...
echo
srcdir=.
if [ $# -eq 1 ]; then
srcdir=$1
modules=./*/
fi
if [ $# -eq 2 ]; then
srcdir=$1
modules=$2
fi
srcdir=$1
shift
modules=$1
shift
rm -f include/allHeaders.h include/allHeaders.h.pch include/allLinkDef.h all.h cppflags.txt include/allLinkDef.h
while ! [ "x$1" = "x" ]; do
echo '#include "'$1'"' >> all.h
shift
done
for dict in `find $modules -name 'G__*.cxx' 2> /dev/null | grep -v /G__Cling.cxx | grep -v core/metautils/src/G__std_`; do
dirname=`dirname $dict` # to get foo/src
dirname=`echo $dirname | sed 's,/src$,,'` # to get foo
......
......@@ -36,9 +36,9 @@ CLINGETC_LLVM := llvm/ADT/IntrusiveRefCntPtr.h \
llvm/Support/SwapByteOrder.h \
llvm/Support/type_traits.h
CLINGETC := $(addprefix etc/cling/Interpreter/,$(CLINGETC_CLING)) \
$(addprefix etc/cling/cint/,multimap multiset) \
CLINGETCPCH := $(addprefix etc/cling/Interpreter/,$(CLINGETC_CLING)) \
$(addprefix etc/cling/,$(CLINGETC_LLVM))
CLINGETC := $(CLINGETCPCH) $(addprefix etc/cling/cint/,multimap multiset)
CLINGETC_ORIGINALS := $(addprefix $(call stripsrc,$(LLVMDIRI))/include/,$(CLINGETC_LLVM)) \
$(addprefix $(CLINGDIR)/include/cling/,$(CLINGETC_CLING))
......
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