Last active
December 28, 2015 13:48
-
-
Save jduck/7509874 to your computer and use it in GitHub Desktop.
Enable static for building strace for Android
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# dev:~/android/source/external/strace$ git diff | |
# | |
# to apply & build: | |
# | |
# dev:~/android/source/external/strace$ patch -p1 < strace-static.diff | |
# dev:~/android/source/external/strace$ cd ../.. | |
# dev:~/android/source$ mmm external/strace | |
# | |
diff --git a/Android.mk b/Android.mk | |
index 5274280..4f1707e 100644 | |
--- a/Android.mk | |
+++ b/Android.mk | |
@@ -130,8 +130,12 @@ LOCAL_C_INCLUDES := \ | |
LOCAL_MODULE := strace | |
+LOCAL_FORCE_STATIC_EXECUTABLE := true | |
LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES) | |
+LOCAL_STATIC_LIBRARIES := \ | |
+ libc | |
+ | |
LOCAL_MODULE_TAGS := debug | |
include $(BUILD_EXECUTABLE) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Good, Android had strace already.