meson.build (cab35c73be9d579db105ef73fa8a60728a890098) meson.build (1f2146f7ca0f04afc62c4a170ec78bd030f3e72f)
1if not get_option('tcg').allowed()
2 subdir_done()
3endif
4
5tcg_ss = ss.source_set()
6
7tcg_ss.add(files(
8 'optimize.c',

--- 8 unchanged lines hidden (view full) ---

17
18if get_option('tcg_interpreter')
19 libffi = dependency('libffi', version: '>=3.0', required: true,
20 method: 'pkg-config')
21 tcg_ss.add(libffi)
22 tcg_ss.add(files('tci.c'))
23endif
24
1if not get_option('tcg').allowed()
2 subdir_done()
3endif
4
5tcg_ss = ss.source_set()
6
7tcg_ss.add(files(
8 'optimize.c',

--- 8 unchanged lines hidden (view full) ---

17
18if get_option('tcg_interpreter')
19 libffi = dependency('libffi', version: '>=3.0', required: true,
20 method: 'pkg-config')
21 tcg_ss.add(libffi)
22 tcg_ss.add(files('tci.c'))
23endif
24
25tcg_ss = tcg_ss.apply(config_host, strict: false)
25tcg_ss = tcg_ss.apply(config_targetos, strict: false)
26
27libtcg_user = static_library('tcg_user',
28 tcg_ss.sources() + genh,
29 name_suffix: 'fa',
30 c_args: '-DCONFIG_USER_ONLY',
31 build_by_default: have_user)
32
33tcg_user = declare_dependency(link_with: libtcg_user,

--- 12 unchanged lines hidden ---
26
27libtcg_user = static_library('tcg_user',
28 tcg_ss.sources() + genh,
29 name_suffix: 'fa',
30 c_args: '-DCONFIG_USER_ONLY',
31 build_by_default: have_user)
32
33tcg_user = declare_dependency(link_with: libtcg_user,

--- 12 unchanged lines hidden ---