From b58408b0f8b5a960b571d24469333ee907e69a3f Mon Sep 17 00:00:00 2001 From: Hanspeter Portner Date: Sat, 17 Sep 2022 21:42:43 +0200 Subject: [PATCH] Add aarch64 symbols to whitelist --- meson_options.txt | 2 +- src/lv2lint.c | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/meson_options.txt b/meson_options.txt index 1a80b49..a2c39cd 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -4,4 +4,4 @@ option('online-tests', type : 'feature', value : 'disabled') option('elf-tests', type : 'feature', value : 'disabled') option('x11-tests', type : 'feature', value : 'disabled') -option('version', type : 'string', value : '0.1.43') +option('version', type : 'string', value : '0.17.61') diff --git a/src/lv2lint.c b/src/lv2lint.c index 928fd07..052c88e 100644 --- a/src/lv2lint.c +++ b/src/lv2lint.c @@ -996,6 +996,11 @@ test_visibility(app_t *app, const char *path, const char *uri, "__rt_data__end", "__rt_text__start", "__rt_text__end", + // C aarch64 + "__end__", + "__bss_start__", + "__bss_end__", + "_bss_end__", // Rust "__rdl_alloc", "__rdl_alloc_excess", -- 2.38.5