|
@@ -225,14 +225,14 @@ Target-dependent emulator sourcesets:
|
|
The sourceset is only used for system emulators.
|
|
The sourceset is only used for system emulators.
|
|
|
|
|
|
Each subdirectory in ``target/`` instead should add one sourceset to each
|
|
Each subdirectory in ``target/`` instead should add one sourceset to each
|
|
- of the ``target_arch`` and ``target_softmmu_arch``, which are used respectively
|
|
|
|
|
|
+ of the ``target_arch`` and ``target_system_arch``, which are used respectively
|
|
for all emulators and for system emulators only. For example::
|
|
for all emulators and for system emulators only. For example::
|
|
|
|
|
|
arm_ss = ss.source_set()
|
|
arm_ss = ss.source_set()
|
|
arm_system_ss = ss.source_set()
|
|
arm_system_ss = ss.source_set()
|
|
...
|
|
...
|
|
target_arch += {'arm': arm_ss}
|
|
target_arch += {'arm': arm_ss}
|
|
- target_softmmu_arch += {'arm': arm_system_ss}
|
|
|
|
|
|
+ target_system_arch += {'arm': arm_system_ss}
|
|
|
|
|
|
Module sourcesets:
|
|
Module sourcesets:
|
|
There are two dictionaries for modules: ``modules`` is used for
|
|
There are two dictionaries for modules: ``modules`` is used for
|