Search Results for: Tobacco wholly stripped
include $(nacl_sdk_root)/tools/common.mk target = part libs = ppapi_cpp ppapi cflags = -wall sources = hello_tutorial.cc # build rules generated by macros from common.mk: $(foreach src,$(sources),$(eval $(call compile_rule,$(src),$(cflags)))) # the pnacl workflow uses both an unstripped and finalized/stripped
binary. # on nacl, only produce a stripped binary for release configs (not debug). ifneq (,$(or $(findstring pnacl,$(toolchain)),$(findstring release,$(config)))) $(eval $(call link_rule,$(target)_unstripped,$(sources),$(libs),$(deps))) $(eval $(call strip_rule,$(target),$(target)_unstripped)) else...
https://developer.chrome.com/native-client/devguide/tutorial/tutorial-part2