From a831a2d71f1b40edd6069808e73c8eae86797c97 Mon Sep 17 00:00:00 2001 From: George Rhoten Date: Fri, 3 Aug 2012 17:27:44 +0000 Subject: [PATCH] ICU-9456 Optimize the ICU4C build on Mac OS X X-SVN-Rev: 32093 --- icu4c/source/config/mh-darwin | 52 ++++++++++++---------------- icu4c/source/data/Makefile.in | 8 +---- icu4c/source/extra/uconv/Makefile.in | 18 +++++++--- 3 files changed, 37 insertions(+), 41 deletions(-) diff --git a/icu4c/source/config/mh-darwin b/icu4c/source/config/mh-darwin index d8e6d5ba0e5..3839d9c43fe 100644 --- a/icu4c/source/config/mh-darwin +++ b/icu4c/source/config/mh-darwin @@ -1,7 +1,7 @@ ## -*-makefile-*- ## Darwin-specific setup (Darwin is the Mac OS X developer preview, successor ## to Rhapsody, aka Mac OS X Server) -## Copyright (c) 1999-2011 International Business Machines Corporation and +## Copyright (c) 1999-2012 International Business Machines Corporation and ## others. All Rights Reserved. ## Flags for position independent code @@ -9,12 +9,15 @@ SHAREDLIBCFLAGS = -dynamic SHAREDLIBCXXFLAGS = -dynamic SHAREDLIBCPPFLAGS = +# Do not export internal methods by default +LIBCFLAGS += -fvisibility=hidden +LIBCXXFLAGS += -fvisibility=hidden + # Pad out the paths to the maximum possible length LD_FLAGS += -headerpad_max_install_names -## Commands to generate dependency files -GEN_DEPS.c= $(CC) -E -MMD $(DEFS) $(CPPFLAGS) -GEN_DEPS.cc= $(CXX) -E -MMD $(DEFS) $(CPPFLAGS) +# We do not need to see the stderr message that the archive was made. +ARFLAGS += -c ## Commands to compile COMPILE.c= $(CC) $(DEFS) $(CPPFLAGS) $(CFLAGS) -fno-common -c @@ -45,45 +48,36 @@ SO= dylib ## Non-shared intermediate object suffix STATIC_O = ao +# Make sure that both the static and dynamic intermediate objects +# get dependency checking +ifneq ($(ENABLE_STATIC),) +ifneq ($(ENABLE_DYNAMIC),) + STATIC_DEPENDENCY_FILE=" $*.$(STATIC_O)" + DYNAMIC_DEPENDENCY_FILE=" $*.o" +endif +endif + ## Override Versioned target for a shared library. FINAL_SO_TARGET= $(basename $(SO_TARGET)).$(SO_TARGET_VERSION).$(SO) MIDDLE_SO_TARGET= $(basename $(SO_TARGET)).$(SO_TARGET_VERSION_MAJOR).$(SO) -## Compilation rules +## Compilation and dependency rules %.$(STATIC_O): $(srcdir)/%.c - $(COMPILE.c) $(STATICCPPFLAGS) $(STATICCFLAGS) -o $@ $< + $(strip $(COMPILE.c) $(STATICCPPFLAGS) $(STATICCFLAGS)) -MMD -MT "$*.d$(DYNAMIC_DEPENDENCY_FILE)" -o $@ $< %.o: $(srcdir)/%.c - $(COMPILE.c) $(DYNAMICCPPFLAGS) $(DYNAMICCFLAGS) -o $@ $< + $(strip $(COMPILE.c) $(DYNAMICCPPFLAGS) $(DYNAMICCFLAGS)) -MMD -MT "$*.d$(STATIC_DEPENDENCY_FILE)" -o $@ $< %.$(STATIC_O): $(srcdir)/%.cpp - $(COMPILE.cc) $(STATICCPPFLAGS) $(STATICCXXFLAGS) -o $@ $< + $(strip $(COMPILE.cc) $(STATICCPPFLAGS) $(STATICCXXFLAGS)) -MMD -MT "$*.d$(DYNAMIC_DEPENDENCY_FILE)" -o $@ $< %.o: $(srcdir)/%.cpp - $(COMPILE.cc) $(DYNAMICCPPFLAGS) $(DYNAMICCXXFLAGS) -o $@ $< - - -## Dependency rules -%.d : $(srcdir)/%.c - @echo "generating dependency information for $<" - @$(GEN_DEPS.c) $< > /dev/null - @mv $@ $@~ - @printf "%s" "$@ " > $@ - @cat < $@~ >> $@ - @-rm $@~ - -%.d : $(srcdir)/%.cpp - @echo "generating dependency information for $<" - @$(GEN_DEPS.cc) $< >/dev/null - @mv $@ $@~ - @printf "%s" "$@ " > $@ - @cat < $@~ >> $@ - @-rm $@~ + $(strip $(COMPILE.cc) $(DYNAMICCPPFLAGS) $(DYNAMICCXXFLAGS)) -MMD -MT "$*.d$(STATIC_DEPENDENCY_FILE)" -o $@ $< ## Versioned libraries rules %.$(SO_TARGET_VERSION_MAJOR).$(SO): %.$(SO_TARGET_VERSION).$(SO) - $(RM) $@ && ln -s ${> $@; ### brk res -$(BRKBLDDIR)/%.res: $(BRKSRCDIR)/%.txt $(TOOLBINDIR)/genrb$(TOOLEXEEXT) $(BRK_FILES) $(DAT_FILES) +$(BRKBLDDIR)/%.res: $(BRKSRCDIR)/%.txt $(TOOLBINDIR)/genrb$(TOOLEXEEXT) $(BRK_FILES) $(CTD_FILES) $(DAT_FILES) $(INVOKE) $(TOOLBINDIR)/genrb $(GENRBOPTS) -i $(BUILDDIR) -s $(BRKSRCDIR) -d $(BRKBLDDIR) $(> $@; \ @@ -170,7 +179,6 @@ endif $(UCONVMSG_LIB): resfiles $(MSGNAME)/%.res: $(srcdir)/$(RESOURCESDIR)/%.txt - $(MKINSTALLDIRS) $(@D) $(INVOKE) $(TOOLBINDIR)/genrb -e UTF-8 -s $(^D) -d $(@D) $(^F) install-man: $(ALL_MAN_FILES) -- 2.40.0