diff options
author | Chih-Wei Huang <[email protected]> | 2015-04-04 05:01:22 +0800 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2015-04-22 15:53:35 +0100 |
commit | b0e33c2256a68d87c4f67b6e25a86e594649ab93 (patch) | |
tree | 7274eafbeb50b25ca9c7a4780e45519b730f0158 /src/mesa/program/Android.mk | |
parent | 671a55084649f9e33018b1e5e1af4e28c639bf3b (diff) |
android: fix the building rules for Android 5.0
Android 5.0 allows modules to generate source into $OUT/gen, which will
then be copied into $OUT/obj and $OUT/obj_$(TARGET_2ND_ARCH) as necessary.
Modules will need to change calls to local-intermediates-dir into
local-generated-sources-dir.
The patch changes local-intermediates-dir into local-generated-sources-dir.
If the Android version is less than 5.0, fallback to local-intermediates-dir.
The patch also fixes the 64-bit building issue of Android 5.0.
v2 [Emil Velikov]
- Keep the LOCAL_UNSTRIPPED_PATH variable.
Signed-off-by: Chih-Wei Huang <[email protected]>
Diffstat (limited to 'src/mesa/program/Android.mk')
-rw-r--r-- | src/mesa/program/Android.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/program/Android.mk b/src/mesa/program/Android.mk index af16e779db0..9a6f9629463 100644 --- a/src/mesa/program/Android.mk +++ b/src/mesa/program/Android.mk @@ -46,7 +46,7 @@ LOCAL_MODULE := libmesa_program LOCAL_MODULE_CLASS := STATIC_LIBRARIES LOCAL_STATIC_LIBRARIES := libmesa_glsl -intermediates := $(call local-intermediates-dir) +intermediates := $(call local-generated-sources-dir) # TODO(chadv): In Makefile.sources, move these vars to a different list so we can # remove this kludge. @@ -72,7 +72,6 @@ $(intermediates)/program/lex.yy.c: $(LOCAL_PATH)/program_lexer.l $(local-l-to-c) LOCAL_C_INCLUDES := \ - $(intermediates) \ $(MESA_TOP)/src/mapi \ $(MESA_TOP)/src/mesa \ $(MESA_TOP)/src/glsl \ |