[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v4 02/12] meson: Allow optional target/${ARCH}/Kconfig
From: |
Richard Henderson |
Subject: |
Re: [PATCH v4 02/12] meson: Allow optional target/${ARCH}/Kconfig |
Date: |
Sat, 3 Oct 2020 04:13:16 -0500 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.10.0 |
On 9/29/20 5:43 PM, Philippe Mathieu-Daudé wrote:
> +++ b/meson.build
> @@ -529,6 +529,7 @@ kconfig_external_symbols = [
> ]
> ignored = ['TARGET_XML_FILES', 'TARGET_ABI_DIR', 'TARGET_DIRS']
>
> +fs = import('fs')
Note that I have this in the capstone update, and I placed it closer to the top
of the file with some other imports.
> foreach target : target_dirs
> config_target = keyval.load(meson.current_build_dir() / target /
> 'config-target.mak')
>
> @@ -569,8 +570,13 @@ foreach target : target_dirs
> endforeach
>
> config_devices_mak = target + '-config-devices.mak'
> + target_kconfig = 'target' / config_target['TARGET_BASE_ARCH'] / 'Kconfig'
> + minikconf_input = ['default-configs' / target + '.mak', 'Kconfig']
> + if fs.is_file(target_kconfig)
Missing a meson.current_source_dir()?
Leastwise that was a comment that Paolo had for me.
r~
- Re: [PATCH v4 02/12] meson: Allow optional target/${ARCH}/Kconfig,
Richard Henderson <=