Commit adef0b1b authored by Andreas Müller's avatar Andreas Müller Committed by Martin Jansa
Browse files

efl: fix build by adding -fPIC to CFLAGS


on armv7/cortexa8 efl fails with:

| ld: error: modules/evas/image_loaders/png/bin_evas_evas_cserve2_slave-evas_image_load_png.o: requires unsupported dynamic reloc R_ARM_MOVW_ABS_NC; recompile with -fPIC
| ld: error: modules/evas/image_loaders/png/bin_evas_evas_cserve2_slave-evas_image_load_png.o: requires unsupported dynamic reloc R_ARM_MOVW_ABS_NC; recompile with -fPIC
Signed-off-by: default avatarAndreas Müller <schnitzeltony@googlemail.com>
Signed-off-by: default avatarMartin Jansa <Martin.Jansa@gmail.com>
Showing with 4 additions and 0 deletions
+4 -0
......@@ -23,3 +23,7 @@ PARALLEL_MAKE_class-native = ""
#Makefile:2163: recipe for target 'all-recursive' failed
# autotools-brokensep
B = "${S}"
#ld: error: modules/evas/image_loaders/png/bin_evas_evas_cserve2_slave-evas_image_load_png.o: requires unsupported dynamic reloc R_ARM_MOVW_ABS_NC; recompile with -fPIC
#ld: error: modules/evas/image_loaders/png/bin_evas_evas_cserve2_slave-evas_image_load_png.o: requires unsupported dynamic reloc R_ARM_MOVW_ABS_NC; recompile with -fPIC
CFLAGS += "-fPIC"
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment