jpeg pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=b6ead19a94663d125e659c1c9ebf49eff40db040
commit b6ead19a94663d125e659c1c9ebf49eff40db040 Author: Jean-Philippe Andre <[email protected]> Date: Wed Dec 9 16:58:48 2015 +0900 Evas: Fix build for ubuntu... again See 75fed54f0e4d72b20860 Apparently the proper CFLAGS are not set for SSE compilation. SSE flags are set only for a specific file (now 2 of them). As usual, it was worksforme but not for others. This should probably fix that. Thanks Sub for the report and testing this solution. --- src/Makefile_Evas.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Makefile_Evas.am b/src/Makefile_Evas.am index b2d1c7a..3f7dd39 100644 --- a/src/Makefile_Evas.am +++ b/src/Makefile_Evas.am @@ -263,7 +263,6 @@ lib/evas/canvas/evas_vg_shape.c lib_evas_libevas_la_SOURCES += \ static_libs/draw/draw_alpha_main.c \ static_libs/draw/draw_main_neon.c \ -static_libs/draw/draw_main_sse2.c \ static_libs/draw/draw_main.c # Engine @@ -373,7 +372,8 @@ lib_evas_libevas_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ noinst_LTLIBRARIES += lib/evas/common/libevas_op_blend_sse3.la lib_evas_common_libevas_op_blend_sse3_la_SOURCES = \ -lib/evas/common/evas_op_blend/op_blend_master_sse3.c +lib/evas/common/evas_op_blend/op_blend_master_sse3.c \ +static_libs/draw/draw_main_sse2.c lib_evas_common_libevas_op_blend_sse3_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ $(lib_evas_libevas_la_CPPFLAGS) \ --
