mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-14 12:04:29 +00:00
infra: simplify vector meson option.
neon/avx can't be resided in together, we replace it with a string variable.
This commit is contained in:
parent
78dd50acc0
commit
6f95e9dbe7
2 changed files with 20 additions and 23 deletions
39
meson.build
39
meson.build
|
@ -40,16 +40,15 @@ if get_option('savers').contains('tvg_beta') == true
|
||||||
config_h.set10('THORVG_TVG_SAVER_SUPPORT', true)
|
config_h.set10('THORVG_TVG_SAVER_SUPPORT', true)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
cpu_avx = false
|
simd_type = 'none'
|
||||||
cpu_neon = false
|
|
||||||
|
|
||||||
if get_option('vector') == true
|
if get_option('vector') == true
|
||||||
if host_machine.cpu_family() == 'x86' or host_machine.cpu_family() == 'x86_64'
|
if host_machine.cpu_family() == 'x86' or host_machine.cpu_family() == 'x86_64'
|
||||||
config_h.set10('THORVG_AVX_VECTOR_SUPPORT', true)
|
config_h.set10('THORVG_AVX_VECTOR_SUPPORT', true)
|
||||||
cpu_avx = true
|
simd_type = 'avx'
|
||||||
elif host_machine.cpu_family() == 'arm'
|
elif host_machine.cpu_family() == 'arm'
|
||||||
config_h.set10('THORVG_NEON_VECTOR_SUPPORT', true)
|
config_h.set10('THORVG_NEON_VECTOR_SUPPORT', true)
|
||||||
cpu_neon = true
|
simd_type = 'neon'
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -81,30 +80,28 @@ Summary:
|
||||||
ThorVG version: @0@
|
ThorVG version: @0@
|
||||||
Build Type: @1@
|
Build Type: @1@
|
||||||
Prefix: @2@
|
Prefix: @2@
|
||||||
Raster Engine (SW): @3@
|
SIMD Instruction: @3@
|
||||||
Raster Engine (GL): @4@
|
Raster Engine (SW): @4@
|
||||||
AVX SIMD Instruction: @5@
|
Raster Engine (GL): @5@
|
||||||
Neon SIMD Instruction: @6@
|
Loader (TVG): @6@
|
||||||
Loader (TVG): @7@
|
Loader (SVG): @7@
|
||||||
Loader (SVG): @8@
|
Loader (PNG): @8@
|
||||||
Loader (PNG): @9@
|
Loader (JPG): @9@
|
||||||
Loader (JPG): @10@
|
Saver (TVG): @10@
|
||||||
Saver (TVG): @11@
|
CAPI Binding: @11@
|
||||||
CAPI Binding: @12@
|
Log Message: @12@
|
||||||
Log Message: @13@
|
Tests: @13@
|
||||||
Tests: @14@
|
Examples: @14@
|
||||||
Examples: @15@
|
Tool (Svg2Tvg): @15@
|
||||||
Tool (Svg2Tvg): @16@
|
Tool (Svg2Png): @16@
|
||||||
Tool (Svg2Png): @17@
|
|
||||||
|
|
||||||
'''.format(
|
'''.format(
|
||||||
meson.project_version(),
|
meson.project_version(),
|
||||||
get_option('buildtype'),
|
get_option('buildtype'),
|
||||||
get_option('prefix'),
|
get_option('prefix'),
|
||||||
|
simd_type,
|
||||||
get_option('engines').contains('sw'),
|
get_option('engines').contains('sw'),
|
||||||
get_option('engines').contains('gl'),
|
get_option('engines').contains('gl'),
|
||||||
cpu_avx,
|
|
||||||
cpu_neon,
|
|
||||||
get_option('loaders').contains('tvg_beta'),
|
get_option('loaders').contains('tvg_beta'),
|
||||||
get_option('loaders').contains('svg'),
|
get_option('loaders').contains('svg'),
|
||||||
get_option('loaders').contains('png'),
|
get_option('loaders').contains('png'),
|
||||||
|
|
|
@ -2,10 +2,10 @@ compiler_flags = ['-DTVG_BUILD']
|
||||||
|
|
||||||
cc = meson.get_compiler('cpp')
|
cc = meson.get_compiler('cpp')
|
||||||
if (cc.get_id() != 'msvc')
|
if (cc.get_id() != 'msvc')
|
||||||
if cpu_avx
|
if simd_type == 'avx'
|
||||||
compiler_flags += ['-mavx']
|
compiler_flags += ['-mavx']
|
||||||
endif
|
endif
|
||||||
if cpu_neon
|
if simd_type == 'neon'
|
||||||
compiler_flags += ['-mfpu=neon']
|
compiler_flags += ['-mfpu=neon']
|
||||||
endif
|
endif
|
||||||
if get_option('b_sanitize') == 'none'
|
if get_option('b_sanitize') == 'none'
|
||||||
|
|
Loading…
Add table
Reference in a new issue