Fix the other half of PR528 .. don't try to strip header files!
llvm-svn: 20301
This commit is contained in:
parent
1cca959e5d
commit
247a10e729
|
|
@ -322,7 +322,7 @@ endif
|
||||||
ifndef KEEP_SYMBOLS
|
ifndef KEEP_SYMBOLS
|
||||||
Strip := $(PLATFORMSTRIPOPTS)
|
Strip := $(PLATFORMSTRIPOPTS)
|
||||||
StripWarnMsg := "(without symbols)"
|
StripWarnMsg := "(without symbols)"
|
||||||
Install.Flags += -s
|
Install.StripFlag += -s
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Adjust linker flags for building an executable
|
# Adjust linker flags for building an executable
|
||||||
|
|
@ -362,8 +362,8 @@ Relink = $(LIBTOOL) $(LibTool.Flags) --mode=link $(CXX) $(CPP.Flags) \
|
||||||
$(CompileCommonOpts)
|
$(CompileCommonOpts)
|
||||||
LTInstall = $(LIBTOOL) $(LibTool.Flags) --mode=install $(INSTALL) \
|
LTInstall = $(LIBTOOL) $(LibTool.Flags) --mode=install $(INSTALL) \
|
||||||
$(Install.Flags)
|
$(Install.Flags)
|
||||||
ProgInstall = $(INSTALL) $(Install.Flags) -m 0755
|
ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
|
||||||
DataInstall = $(INSTALL) $(Install.Flags) -m 0644
|
DataInstall = $(INSTALL) -m 0644
|
||||||
Burg = $(BURG) -I $(PROJ_SRC_DIR)
|
Burg = $(BURG) -I $(PROJ_SRC_DIR)
|
||||||
TableGen = $(TBLGEN) -I $(PROJ_SRC_DIR)
|
TableGen = $(TBLGEN) -I $(PROJ_SRC_DIR)
|
||||||
Archive = $(AR) $(AR.Flags)
|
Archive = $(AR) $(AR.Flags)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue