raster pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=9c8a7bce24a831566be87fda152e43a03bf207a8

commit 9c8a7bce24a831566be87fda152e43a03bf207a8
Author: Vincent Torri <vincent.to...@gmail.com>
Date:   Fri Jul 12 12:19:19 2019 +0100

    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'))],

-- 


Reply via email to