diff options
author | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2018-11-12 16:41:32 +0000 |
---|---|---|
committer | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2018-11-12 16:42:17 +0000 |
commit | e6c7521f5d0f3b00dd8162787f24dc59ed27d1d1 (patch) | |
tree | e0af15a2c4ae2932abf2d9f0adea52468f1fc2d7 /meson.build | |
parent | ae2d399dd6467beecc0e16d9f851008be99cd998 (diff) | |
download | efl-e6c7521f5d0f3b00dd8162787f24dc59ed27d1d1.tar.gz |
meson - move static libs sraw sse2 inot sse3 build options set
this fixes builds when sse3 is enabled by building with sse3 opts...
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meson.build b/meson.build index 9c090149fa..e2eaff9547 100644 --- a/meson.build +++ b/meson.build @@ -118,6 +118,7 @@ cpu_neon = false cpu_neon_intrinsics = false cpu_altivec = false evas_opt_c_args = [ ] +draw_opt_c_args = [ ] machine_c_args = [ ] compiler = meson.get_compiler('c') @@ -134,6 +135,7 @@ if host_machine.cpu_family() == 'x86' or host_machine.cpu_family() == 'x86_64' if (get_option('cpu-sse3') == true) config_h.set10('BUILD_SSE3', true) evas_opt_c_args += [ '-msse3' ] + draw_opt_c_args += [ '-msse3' ] cpu_sse3 = true message('x86 build - SSE3 enabled') endif |