From 9c8a7bce24a831566be87fda152e43a03bf207a8 Mon Sep 17 00:00:00 2001 From: Vincent Torri Date: Fri, 12 Jul 2019 12:19:19 +0100 Subject: [PATCH] draw static lib: use sse3 instructions set even on Windows Summary: sse3 instructions set exists since 2003/2004. One can consider that computers with Windows have it, these days Note also that ector and evas also use sse3 instructions without the test disabling the Windows platform Test Plan: compilation Reviewers: zmike, raster, cedric, bu5hm4n Subscribers: bu5hm4n, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D9284 --- src/static_libs/draw/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/static_libs/draw/meson.build b/src/static_libs/draw/meson.build index 32fe35e989..0e7dce9cdd 100644 --- a/src/static_libs/draw/meson.build +++ b/src/static_libs/draw/meson.build @@ -9,7 +9,7 @@ draw_src = [ draw_opt_lib = [ ] -if cpu_sse3 == true and sys_windows == false +if cpu_sse3 == true draw_opt = static_library('draw_opt', sources: [ 'draw_main_sse2.c' ], include_directories: config_dir + [include_directories(join_paths('..', '..', 'lib'))],