fix: noconfirm auto-selects first AUR match

This commit is contained in:
2026-05-08 11:01:02 +01:00
parent d39cdc3fd9
commit 153cca6132
8056 changed files with 1983098 additions and 779 deletions
@@ -0,0 +1,23 @@
project('vala and asm', 'vala', 'c')
cpu = host_machine.cpu_family()
cc = meson.get_compiler('c')
supported_cpus = ['arm', 'x86', 'x86_64']
if not supported_cpus.contains(cpu)
error('MESON_SKIP_TEST unsupported cpu:' + cpu)
endif
if meson.get_compiler('c').get_id() == 'msvc'
error('MESON_SKIP_TEST MSVC can\'t compile assembly')
endif
if cc.symbols_have_underscore_prefix()
add_project_arguments('-DMESON_TEST__UNDERSCORE_SYMBOL', language: 'c')
endif
valadeps = [dependency('glib-2.0'), dependency('gobject-2.0')]
e = executable('vala-asm', ['prog.vala', 'retval-' + cpu + '.S'],
dependencies: valadeps)
test('test-vala-asm', e)
@@ -0,0 +1,9 @@
extern int get_retval();
class MainProg : GLib.Object {
public static int main(string[] args) {
stdout.printf("Vala is working.\n");
return get_retval();
}
}
@@ -0,0 +1,11 @@
#include "symbol-underscore.h"
.text
.globl SYMBOL_NAME(get_retval)
# ifdef __linux__
.type get_retval, %function
#endif
SYMBOL_NAME(get_retval):
mov r0, #0
mov pc, lr
@@ -0,0 +1,12 @@
#include "symbol-underscore.h"
.text
.globl SYMBOL_NAME(get_retval)
/* Only supported on Linux with GAS */
# ifdef __linux__
.type get_retval, %function
#endif
SYMBOL_NAME(get_retval):
xorl %eax, %eax
retl
@@ -0,0 +1,11 @@
#include "symbol-underscore.h"
.text
.globl SYMBOL_NAME(get_retval)
# ifdef __linux__
.type get_retval, %function
#endif
SYMBOL_NAME(get_retval):
xorl %eax, %eax
retq
@@ -0,0 +1,5 @@
#if defined(MESON_TEST__UNDERSCORE_SYMBOL)
# define SYMBOL_NAME(name) _##name
#else
# define SYMBOL_NAME(name) name
#endif