# -*- mode: makefile -*- # # Makefile containing platform dependencies for ROOT based projects. # # Copyright (c) 2000 Rene Brun and Fons Rademakers # # Author: Fons Rademakers, 29/2/2000 ROOTCONFIG := root-config ARCH := $(shell $(ROOTCONFIG) --arch) PLATFORM := $(shell $(ROOTCONFIG) --platform) CXX = ObjSuf = o SrcSuf = cxx ExeSuf = DllSuf = so OutPutOpt = -o # keep whitespace after "-o" ROOTCFLAGS := $(shell $(ROOTCONFIG) --cflags) ROOTLDFLAGS := $(shell $(ROOTCONFIG) --ldflags) ROOTLIBS := $(shell $(ROOTCONFIG) --libs) ROOTGLIBS := $(shell $(ROOTCONFIG) --glibs) HASTHREAD := $(shell $(ROOTCONFIG) --has-thread) ifeq ($(ARCH),hpuxacc) # HP-UX 10.x with aCC CXX = aCC CXXFLAGS = -O +Z LD = aCC LDFLAGS = -O -z SOFLAGS = -b endif ifeq ($(ARCH),hpuxia64acc) # HP-UX 11i 1.5 (IA-64) with aCC CXX = aCC CXXFLAGS = +DD64 -O +Z LD = aCC LDFLAGS = +DD64 -O -z SOFLAGS = -b endif ifeq ($(ARCH),hpuxgcc) # HP-UX 10.x with g++ CXXFLAGS = -O -fPIC CXX = g++ LD = g++ LDFLAGS = -O SOFLAGS = -fPIC -shared endif ifeq ($(ARCH),hurddeb) # GNU/Hurd CXX = g++ CXXFLAGS = -O2 -Wall -fPIC LD = g++ LDFLAGS = -O2 SOFLAGS = -shared endif ifeq ($(ARCH),aix) # IBM AIX xlC 4.x CXX = xlC CXXFLAGS = -O LD = xlC LDFLAGS = -O SOFLAGS = DllSuf = a endif ifeq ($(ARCH),aix5) # IBM AIX xlC 5.x CXX = xlC CXXFLAGS = -O LD = xlC LDFLAGS = -O SOFLAGS = DllSuf = a endif ifeq ($(ARCH),aixgcc) # IBM AIX with GCC CXX = g++ CXXFLAGS = -O LD = g++ LDFLAGS = -O SOFLAGS = -shared DllSuf = a EXPLLINKLIBS = $(ROOTLIBS) $(ROOTGLIBS) endif ifeq ($(ARCH),solaris) # Solaris CC CXX = /opt/SUNWspro/bin/CC CXXFLAGS = -O -KPIC LD = /opt/SUNWspro/bin/CC LDFLAGS = -O SOFLAGS = -G endif ifeq ($(ARCH),solarisCC5) # Solaris CC 5.0 CXX = CC CXXFLAGS = -O -KPIC LD = CC LDFLAGS = -O SOFLAGS = -G endif ifeq ($(ARCH),solarisgcc) # Solaris gcc CXX = g++ CXXFLAGS = -O -fPIC LD = g++ LDFLAGS = -O SOFLAGS = -shared endif ifeq ($(ARCH),solariskcc) # Solaris kcc CXX = KCC --one_instantiation_per_object CXXFLAGS = -O4 -KPIC LD = KCC LDFLAGS = -O4 SOFLAGS = endif ifeq ($(ARCH),solarisx86) # Solaris CC on Intel CXX = CC CXXFLAGS = -O -KPIC LD = CC LDFLAGS = -O SOFLAGS = -G endif ifeq ($(ARCH),sgicc) # SGI CXX = CC -n32 -I/usr/include/CC.sgi CXXFLAGS = -O LD = CC -n32 -LANG:std -I/usr/include/CC.sgi LDFLAGS = -O SOFLAGS = -shared endif ifeq ($(ARCH),sgicc64) # SGI CXX = CC -64 -I/usr/include/CC.sgi CXXFLAGS = -O LD = CC -64 -LANG:std -I/usr/include/CC.sgi LDFLAGS = -O SOFLAGS = -shared endif ifeq ($(ARCH),sgigcc) # SGI 6.x with gcc CXX = g++ CXXFLAGS = -O -Wall -fPIC LD = g++ LDFLAGS = -O -Wl,-u,__builtin_new -Wl,-u,__builtin_delete -Wl,-u,__nw__FUiPv SOFLAGS = -shared endif ifeq ($(ARCH),sgin32gcc) # SGI 6.x with gcc for n32 ABI CXX = g++ CXXFLAGS = -O -Wall -fPIC LD = g++ LDFLAGS = -O -L/usr/lib32 -Wl,-woff,134 -lgen SOFLAGS = -shared endif ifeq ($(ARCH),sgikcc) # SGI with KCC CXX = KCC -n32 --one_instantiation_per_object CXXFLAGS = -O LD = KCC -n32 LDFLAGS = -O SOFLAGS = endif ifeq ($(ARCH),alphagcc) # Alpha/OSF with gcc CXX = g++ CXXFLAGS = -O2 -Wall -fPIC LD = g++ LDFLAGS = -O2 SOFLAGS = -Wl,-expect_unresolved,* -shared endif ifeq ($(ARCH),alphakcc) # Alpha/OSF with kai compiler (not yet valid) CXX = KCC --one_instantiation_per_object CXXFLAGS = -O -fPIC LD = KCC LDFLAGS = -O SOFLAGS = -Wl,-expect_unresolved,* -shared endif ifeq ($(ARCH),alphacxx6) # Alpha/OSF with cxx6 CXX = cxx CXXFLAGS = -O LD = cxx LDFLAGS = -O SOFLAGS = -shared -nocxxstd -Wl,-expect_unresolved,*,-msym endif ifeq ($(ARCH),linuxrh51) # Linux with gcc 2.7.2.x CXX = g++ CXXFLAGS = -O2 -Wall -fPIC LD = g++ LDFLAGS = -O2 SOFLAGS = -shared endif ifeq ($(ARCH),linuxrh42) # Linux with gcc 2.7.2.x (RedHat 4.2) CXX = g++ CXXFLAGS = -O2 -Wall -fPIC LD = g++ LDFLAGS = -O2 SOFLAGS = -shared endif ifeq ($(ARCH),linuxdeb) # Linux with gcc 2.7.2.x CXX = g++ CXXFLAGS = -O1 -Wall -fPIC LD = g++ LDFLAGS = -O1 SOFLAGS = -shared endif ifeq ($(ARCH),linuxdeb2ppc) # Debian/Linux on the PowerPC CXX = g++ CXXFLAGS = -O2 -Wall -fPIC LD = g++ LDFLAGS = -O2 SOFLAGS = -shared endif ifeq ($(ARCH),linuxsuse6) # Linux with gcc 2.7.2.x CXX = g++ CXXFLAGS = -O2 -Wall -fPIC LD = g++ LDFLAGS = -O2 SOFLAGS = -shared endif ifeq ($(ARCH),linux) # Linux with egcs, gcc 2.9x, gcc 3.x (>= RedHat 5.2) CXX = g++ CXXFLAGS = -O -Wall -fPIC LD = g++ LDFLAGS = -O SOFLAGS = -shared endif ifeq ($(ARCH),linuxkcc) # Linux with the KAI compiler CXX = KCC --one_instantiation_per_object CXXFLAGS = -O -fPIC +K0 LD = KCC LDFLAGS = -O $(shell $(ROOTCONFIG) --cflags) SOFLAGS = endif ifeq ($(ARCH),linuxicc) # Linux with Intel icc compiler ICC_MAJOR := $(shell icc -v 2>&1 | awk '{ if (NR==1) print $$2 }' | \ cut -d'.' -f1) ICC_MINOR := $(shell icc -v 2>&1 | awk '{ if (NR==1) print $$2 }' | \ cut -d'.' -f2) CXX = icc CXXFLAGS = -O -fPIC -wd1476 LD = icpc LDFLAGS = -O SOFLAGS = -shared ifeq ($(ICC_MAJOR),8) ifneq ($(ICC_MINOR),0) CXXFLAGS += -wd1572 endif endif endif ifeq ($(ARCH),linuxppcgcc) # MkLinux with gcc and glibc CXX = g++ CXXFLAGS = -O2 -Wall -fPIC LD = g++ LDFLAGS = -O2 SOFLAGS = -shared endif ifeq ($(ARCH),linuxia64gcc) # Itanium Linux with gcc 2.9x CXX = g++ CXXFLAGS = -O2 -Wall -fPIC LD = g++ LDFLAGS = -O2 SOFLAGS = -shared endif ifeq ($(ARCH),linuxia64sgi) # Itanium Linux with sgiCC CXX = sgiCC CXXFLAGS = -O -Wall -fPIC LD = gsgiCC LDFLAGS = -O SOFLAGS = -shared endif ifeq ($(ARCH),linuxia64ecc) # Itanium Linux with Intel icc (was ecc) ICC_MAJOR := $(shell icc -v 2>&1 | awk '{ if (NR==1) print $$2 }' | \ cut -d'.' -f1) ICC_MINOR := $(shell icc -v 2>&1 | awk '{ if (NR==1) print $$2 }' | \ cut -d'.' -f2) CXX = icc CXXFLAGS = -O -fPIC -wd1476 LD = icpc LDFLAGS = -O SOFLAGS = -shared ifeq ($(ICC_MAJOR),8) ifneq ($(ICC_MINOR),0) CXXFLAGS += -wd1572 endif endif endif ifeq ($(ARCH),linuxx8664gcc) # AMD Opteron and Intel EM64T (64 bit mode) Linux with gcc 3.x CXX = g++ CXXFLAGS = -O2 -Wall -fPIC LD = g++ LDFLAGS = -O2 SOFLAGS = -shared endif ifeq ($(ARCH),linuxppc64gcc) # PPC64 Linux with gcc 3.x CXX = g++ CXXFLAGS = -O -Wall -fPIC LD = g++ LDFLAGS = -O SOFLAGS = -shared endif ifeq ($(ARCH),linuxx8664icc) # AMD Opteron and Intel EM64T (64 bit mode) Linux with Intel icc compiler CXX = icc CXXFLAGS = -O -fPIC -wd1476 -wd1572 LD = icpc LDFLAGS = -O SOFLAGS = -shared endif ifeq ($(ARCH),linuxalphagcc) # Alpha Linux with gcc CXX = g++ CXXFLAGS = -O2 -Wall -fPIC LD = g++ LDFLAGS = -O2 SOFLAGS = -shared endif ifeq ($(ARCH),linuxarm) # ARM Linux with egcs CXX = g++ CXXFLAGS = -O -Wall -fPIC LD = g++ LDFLAGS = -O SOFLAGS = -shared endif ifeq ($(ARCH),mklinux) # MkLinux with libc5 CXX = g++ CXXFLAGS = -O2 -Wall -fPIC LD = g++ LDFLAGS = -O2 SOFLAGS = -shared endif ifeq ($(ARCH),freebsd) # FreeBSD with libc5 CXX = g++ CXXFLAGS = -O -pipe -W -Wall -fPIC LD = g++ LDFLAGS = -O SOFLAGS = -shared -Wl,-x endif ifeq ($(ARCH),freebsd4) # FreeBSD with glibc CXXFLAGS += -W -Wall -fPIC LD = $(CXX) SOFLAGS = -shared -Wl,-x endif ifeq ($(ARCH),freebsd5) # FreeBSD with glibc CXXFLAGS += -W -Wall -fPIC LD = $(CXX) endif ifeq ($(ARCH),openbsd) # OpenBSD with libc CXX = g++ CXXFLAGS = -O -pipe -W -Wall -fPIC LD = g++ LDFLAGS = -O SOFLAGS = -shared -Wl,-x endif ifeq ($(ARCH),macosx) # MacOS X with cc (GNU cc 2.95.2 and gcc 3.3) MACOSX_MINOR := $(shell sw_vers | sed -n 's/ProductVersion://p' | cut -d . -f 2) CXX = c++ CXXFLAGS = -O2 -pipe -Wall -W -Woverloaded-virtual LDFLAGS = -O2 -bind_at_load # The SOFLAGS will be used to create the .dylib, # the .so will be created separately DllSuf = dylib ifeq ($(MACOSX_MINOR),4) UNDEFOPT = dynamic_lookup LD = MACOSX_DEPLOYMENT_TARGET=10.4 c++ else ifeq ($(MACOSX_MINOR),3) UNDEFOPT = dynamic_lookup LD = MACOSX_DEPLOYMENT_TARGET=10.3 c++ else UNDEFOPT = suppress LD = c++ endif endif SOFLAGS = -dynamiclib -single_module -undefined $(UNDEFOPT) endif ifeq ($(ARCH),macosxicc) # MacOS X with Intel icc compiler MACOSX_MINOR := $(shell sw_vers | sed -n 's/ProductVersion://p' | cut -d . -f 2) CXX = icc CXXFLAGS = -O -fPIC -wd1476 LDFLAGS = -O # The SOFLAGS will be used to create the .dylib, # the .so will be created separately DllSuf = dylib ifeq ($(MACOSX_MINOR),4) LD = MACOSX_DEPLOYMENT_TARGET=10.4 icpc endif SOFLAGS = -dynamiclib -single_module -Xlinker -undefined dynamic_lookup endif ifeq ($(ARCH),macosx64) # MacOS X >= 10.4 with gcc 64 bit mode (GNU gcc 4.*) # Only specific option (-m64) comes from root-config MACOSX_MINOR := $(shell sw_vers | sed -n 's/ProductVersion://p' | cut -d . -f 2) CXX = c++ CXXFLAGS = -O2 -pipe -Wall -W -Woverloaded-virtual LDFLAGS = -O2 -bind_at_load # The SOFLAGS will be used to create the .dylib, # the .so will be created separately DllSuf = dylib LD = MACOSX_DEPLOYMENT_TARGET=10.4 c++ SOFLAGS = -dynamiclib -single_module -undefined dynamic_lookup endif ifeq ($(ARCH),macosxxlc) # MacOS X with IBM xlC compiler MACOSX_MINOR := $(shell sw_vers | sed -n 's/ProductVersion://p' | cut -d . -f 2) CXX = xlC CXXFLAGS = -O LDFLAGS = -O -Wl,-bind_at_load # The SOFLAGS will be used to create the .dylib, # the .so will be created separately DllSuf = dylib ifeq ($(MACOSX_MINOR),4) UNDEFOPT = dynamic_lookup LD = MACOSX_DEPLOYMENT_TARGET=10.4 xlC else ifeq ($(MACOSX_MINOR),3) UNDEFOPT = dynamic_lookup LD = MACOSX_DEPLOYMENT_TARGET=10.3 xlC else UNDEFOPT = suppress LD = xlC endif endif SOFLAGS = -qmkshrobj -single_module -undefined $(UNDEFOPT) endif ifeq ($(ARCH),win32) # Windows with the VC++ compiler VC_MAJOR := $(shell unset VS_UNICODE_OUTPUT; cl.exe 2>&1 | awk '{ if (NR==1) print $$8 }' | \ cut -d'.' -f1) ObjSuf = obj SrcSuf = cxx ExeSuf = .exe DllSuf = dll OutPutOpt = -out: CXX = cl CXXOPT = -O2 #CXXOPT = -Z7 CXXFLAGS = $(CXXOPT) -nologo -I$(shell $(ROOTCONFIG) --incdir) -FIw32pragma.h LD = link LDOPT = -opt:ref #LDOPT = -debug LDFLAGS = $(LDOPT) -pdb:none -nologo SOFLAGS = -DLL EXPLLINKLIBS = $(ROOTLIBS) $(ROOTGLIBS) endif ifeq ($(ARCH),win32old) # Windows with the VC++ compiler ObjSuf = obj SrcSuf = cxx ExeSuf = .exe DllSuf = dll OutPutOpt = -out: CXX = cl CXXOPT = -O2 #CXXOPT = -Z7 CXXFLAGS = $(CXXOPT) -G5 -GR -GX -MD -DWIN32 -D_WINDOWS -nologo \ -DVISUAL_CPLUSPLUS -D_X86_=1 -D_DLL LD = link LDOPT = -opt:ref #LDOPT = -debug LDFLAGS = $(LDOPT) -pdb:none -nologo SOFLAGS = -DLL EXPLLINKLIBS = $(ROOTLIBS) $(ROOTGLIBS) endif ifeq ($(ARCH),win32gcc) # Windows with gcc DllSuf = dll ExeSuf = .exe CXX = g++ CXXFLAGS = -O -pipe -Wall -Woverloaded-virtual -I/usr/X11R6/include LD = g++ LDFLAGS = -O -Wl,--enable-auto-import -Wl,--enable-runtime-pseudo-reloc \ -L/usr/X11R6/lib SOFLAGS = -shared -D_DLL -Wl,--export-all-symbols EXPLLINKLIBS = $(ROOTLIBS) $(ROOTGLIBS) endif ifeq ($(CXX),) $(error $(ARCH) invalid architecture) endif CXXFLAGS += $(ROOTCFLAGS) LDFLAGS += $(ROOTLDFLAGS) LIBS = $(ROOTLIBS) $(SYSLIBS) GLIBS = $(ROOTGLIBS) $(SYSLIBS)