1 if not get_option('tcg').allowed()
5 tcg_ss = ss.source_set()
18 if get_option('tcg_interpreter')
19 libffi = dependency('libffi', version: '>=3.0', required: true,
22 tcg_ss.add(files('tci.c'))
25 tcg_ss = tcg_ss.apply(config_targetos, strict: false)
27 libtcg_user = static_library('tcg_user',
28 tcg_ss.sources() + genh,
30 c_args: '-DCONFIG_USER_ONLY',
31 build_by_default: false)
33 tcg_user = declare_dependency(link_with: libtcg_user,
34 dependencies: tcg_ss.dependencies())
37 libtcg_system = static_library('tcg_system',
38 tcg_ss.sources() + genh,
40 c_args: '-DCONFIG_SOFTMMU',
41 build_by_default: false)
43 tcg_system = declare_dependency(link_with: libtcg_system,
44 dependencies: tcg_ss.dependencies())
45 system_ss.add(tcg_system)