| Index: native_client_sdk/src/gonacl_appengine/src/bullet/Makefile
|
| diff --git a/native_client_sdk/src/gonacl_appengine/src/bullet/Makefile b/native_client_sdk/src/gonacl_appengine/src/bullet/Makefile
|
| index 77ff8c07c145b02f8b502c46169d42e68641fd0f..a2e76da9a6fc6f327921c5284c86a228b3246389 100644
|
| --- a/native_client_sdk/src/gonacl_appengine/src/bullet/Makefile
|
| +++ b/native_client_sdk/src/gonacl_appengine/src/bullet/Makefile
|
| @@ -28,7 +28,9 @@ SOURCES = \
|
|
|
| $(foreach src,$(SOURCES),$(eval $(call COMPILE_RULE,$(src),$(CFLAGS))))
|
|
|
| -ifeq ($(CONFIG),Release)
|
| +# 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
|
|
|