diff options
| author | Robert Marko | 2025-05-09 12:10:41 +0000 |
|---|---|---|
| committer | Robert Marko | 2025-05-09 12:13:19 +0000 |
| commit | 9a3c6df21ba2012fcb4844f6a983fb774fadd1eb (patch) | |
| tree | da01afe366293a0c483c7eb208c9833e1be047e6 | |
| parent | 538efe5d6bd6207fcc94c7df08cda1ae5fa9d541 (diff) | |
| download | openwrt-9a3c6df21ba2012fcb4844f6a983fb774fadd1eb.tar.gz | |
generic: config-filter: filter out CONFIG_RUSTC_SUPPORTS_* symbols
CONFIG_RUSTC_SUPPORTS_* is set based on rustc presence and version,
so we need to filter it out.
Signed-off-by: Robert Marko <robimarko@gmail.com>
| -rw-r--r-- | target/linux/generic/config-filter | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/linux/generic/config-filter b/target/linux/generic/config-filter index e01d747170..e1a763af5a 100644 --- a/target/linux/generic/config-filter +++ b/target/linux/generic/config-filter @@ -17,6 +17,7 @@ CONFIG_PAHOLE_HAS_SPLIT_BTF=.* CONFIG_PAHOLE_VERSION=.* CONFIG_PLUGIN_HOSTCC=".*" CONFIG_RUSTC_LLVM_VERSION=.* +CONFIG_RUSTC_SUPPORTS_.*=.* CONFIG_RUSTC_VERSION=.* # CONFIG_SET_FS is not set # CONFIG_TASKS_.* is not set |