in a makefile ,I found this :
release:
$(STRIP) -s $(APPNAME)
$(STRIP) -s $(LIBNAME)
so to google "STRIP makefile" and know that:
# STRIP is the command used to compact the compiled binaries by removing their
# symbol tables.
STRIP = strip
sites:makefile
转载请注明:在路上 » the role of strip in makefile