|
| From: | Richard Henderson |
| Subject: | Re: [PATCH 3/3] migration: Make dirtyrate.c target independent |
| Date: | Thu, 11 May 2023 12:52:31 +0100 |
| User-agent: | Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.10.0 |
On 5/11/23 12:46, Juan Quintela wrote:
+softmmu_ss.add(when: 'CONFIG_SOFTMMU', if_true: files('dirtyrate.c'))This becomes softmmu_ss.add(files('dirtyrate.c')) the when: is redundant with 'softmmu_ss'.It looked weird, but I didn't understand this stuff well enough, so I just copyed what was there O:-) Is there any documentation about this? Because what I usually do is search for a file that does (more or less) the same that I need and just add it to that list.
It's just top-level make^H^H^H^Hmeson.build related. We have common_ss.add_all(when: 'CONFIG_SOFTMMU', if_true: [softmmu_ss]) so everything in softmmu_ss is already protected by CONFIG_SOFTMMU. r~
| [Prev in Thread] | Current Thread | [Next in Thread] |