diff options
author | John Criswell <criswell@uiuc.edu> | 2003-07-31 20:58:51 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2003-07-31 20:58:51 +0000 |
commit | 82f4a5a00c94ac741360cce09eb4e5060b6cf146 (patch) | |
tree | f2b7c3e75bb3132b223150b4c03d6c17615dca69 /Makefile.common | |
parent | 71336a9c14d2da7fd9ab094eed8c6f3695b864ee (diff) |
Modified the use of libtool so that we don't compile every file twice.
This can be done using the disable-shared tag that comes with libtool.
This change also required changing how .o libraries are linked.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7458 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.common')
-rw-r--r-- | Makefile.common | 66 |
1 files changed, 44 insertions, 22 deletions
diff --git a/Makefile.common b/Makefile.common index c3f5af2201..2612e6fc65 100644 --- a/Makefile.common +++ b/Makefile.common @@ -272,6 +272,21 @@ LIBTOOL=$(LLVM_SRC_ROOT)/mklib --silent endif # +# If we're not building a shared library, use the disable-shared tag with +# libtool. This will disable the building of objects for shared libraries and +# only generate static library objects. +# +# For dynamic libraries, we'll take the performance hit for now, since we +# almost never build them. +# +# This should speed up compilation and require no modifications to future +# versions of libtool. +# +ifndef SHARED_LIBRARY +LIBTOOL := $(LIBTOOL) --tag=disable-shared +endif + +# # Verbosity levels # ifndef VERBOSE @@ -323,18 +338,6 @@ CompileOptimizeOpts := -O3 -DNDEBUG -finline-functions -fshort-enums Compile := $(LIBTOOL) --mode=compile $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $(CompileCommonOpts) CompileC := $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CCFLAGS) $(CompileCommonOpts) -# -# Add the LLVM specific "-only-static" option so that we only compile .o files -# once when not building a shared library. -# -# For shared libraries, we will end up building twice, but that doesn't happen -# very often, so we'll let it go. -# -ifndef SHARED_LIBRARY -Compile := $(Compile) -only-static -CompileC := $(CompileC) -only-static -endif - # Compile a cpp file, don't link... CompileG := $(Compile) -g -D_DEBUG CompileO := $(Compile) $(CompileOptimizeOpts) -felide-constructors -fomit-frame-pointer @@ -365,7 +368,11 @@ LinkO := $(Link) -O3 -L$(PROJLIBRELEASESOURCE) -L$(LLVMLIBRELEASESOURCE) LinkP := $(Link) -O3 -L$(PROJLIBPROFILESOURCE) -L$(LLVMLIBPROFILESOURCE) $(PROFILE) # Create one .o file from a bunch of .o files... +#ifdef SHARED_LIBRARY Relink = ${LIBTOOL} --mode=link $(CXX) +#else +Relink = ${LIBTOOL} --mode=link $(CXX) -only-static +#endif # MakeSO - Create a .so file from a .o files... #MakeSO := $(LIBTOOL) --mode=link $(CXX) $(MakeSharedObjectOption) @@ -400,11 +407,22 @@ ifndef Source Source := $(ExtraSource) $(wildcard *.cpp *.c *.y *.l) endif +# +# Libtool Objects +# Objs := $(sort $(patsubst Debug/%.lo, %.lo, $(addsuffix .lo,$(notdir $(basename $(Source)))))) ObjectsO := $(addprefix $(BUILD_OBJ_DIR)/Release/,$(Objs)) ObjectsP := $(addprefix $(BUILD_OBJ_DIR)/Profile/,$(Objs)) ObjectsG := $(addprefix $(BUILD_OBJ_DIR)/Debug/,$(Objs)) +# +# The real objects underlying the libtool objects +# +RObjs := $(sort $(patsubst Debug/%.o, %.o, $(addsuffix .o,$(notdir $(basename $(Source)))))) +RObjectsO := $(addprefix $(BUILD_OBJ_DIR)/Release/,$(RObjs)) +RObjectsP := $(addprefix $(BUILD_OBJ_DIR)/Profile/,$(RObjs)) +RObjectsG := $(addprefix $(BUILD_OBJ_DIR)/Debug/,$(RObjs)) + #--------------------------------------------------------- # Handle the DIRS and PARALLEL_DIRS options #--------------------------------------------------------- @@ -536,17 +554,28 @@ $(LIBNAME_AG): $(ObjectsG) $(LibSubDirs) $(DESTLIBDEBUG)/.dir # # Rules for building .o libraries. # +# JTC: +# Note that for this special case, we specify the actual object files +# instead of their libtool counterparts. This is because libtool +# doesn't want to generate a reloadable object file unless it is given +# .o files explicitly. +# +# Note that we're making an assumption here: If we build a .lo file, +# it's corresponding .o file will be placed in the same directory. +# +# I think that is safe. +# $(LIBNAME_OBJO): $(ObjectsO) $(LibSubDirs) $(DESTLIBRELEASE)/.dir @echo "Linking $@" - $(VERB) $(Relink) -o $@ $(ObjectsO) $(LibSubDirs) + $(VERB) $(Relink) -o $@ $(RObjectsO) $(LibSubDirs) $(LIBNAME_OBJP): $(ObjectsP) $(LibSubDirs) $(DESTLIBPROFILE)/.dir @echo "Linking $@" - $(VERB) $(Relink) -o $@ $(ObjectsP) $(LibSubDirs) + $(VERB) $(Relink) -o $@ $(RObjectsP) $(LibSubDirs) $(LIBNAME_OBJG): $(ObjectsG) $(LibSubDirs) $(DESTLIBDEBUG)/.dir @echo "Linking $@" - $(VERB) $(Relink) -o $@ $(ObjectsG) $(LibSubDirs) + $(VERB) $(Relink) -o $@ $(RObjectsG) $(LibSubDirs) endif @@ -789,13 +818,6 @@ distclean:: clean SourceBaseNames := $(basename $(notdir $(filter-out Debug/%, $(Source)))) SourceDepend := $(SourceBaseNames:%=$(BUILD_OBJ_DIR)/Depend/%.d) -# -# Depend target: -# This allows a user to manually ask for an update in the dependencies -# -depend: $(SourceDepend) - - # Create dependencies for the *.cpp files... #$(SourceDepend): \x $(BUILD_OBJ_DIR)/Depend/%.d: $(SourceDir)%.cpp $(BUILD_OBJ_DIR)/Depend/.dir |