fix: noconfirm auto-selects first AUR match
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
int foo_system_value (void);
|
||||
int faa_system_value (void);
|
||||
|
||||
int bar_built_value (int in)
|
||||
{
|
||||
return faa_system_value() + foo_system_value() + in;
|
||||
}
|
||||
+28
@@ -0,0 +1,28 @@
|
||||
project('built library', 'c')
|
||||
|
||||
cc = meson.get_compiler('c')
|
||||
|
||||
import('python').find_installation().install_sources('foo.py')
|
||||
|
||||
if host_machine.system() != 'cygwin'
|
||||
# bar_in_system has undefined symbols, but still must be found
|
||||
bar_system_dep = cc.find_library('bar_in_system')
|
||||
endif
|
||||
|
||||
foo_system_dep = cc.find_library('foo_in_system')
|
||||
|
||||
faa_pkg_dep = dependency('faa_pkg')
|
||||
|
||||
l = shared_library('bar_built', 'bar.c',
|
||||
install: true,
|
||||
dependencies : [foo_system_dep, faa_pkg_dep])
|
||||
|
||||
if host_machine.system() == 'darwin'
|
||||
e = executable('prog', 'prog.c', link_with: l, install: true)
|
||||
test('testprog', e)
|
||||
elif host_machine.system() == 'linux'
|
||||
e = executable('prog', 'prog.c', link_with: l, install: true,
|
||||
install_rpath: '$ORIGIN/..' / get_option('libdir'),
|
||||
)
|
||||
test('testprog', e)
|
||||
endif
|
||||
+1
@@ -0,0 +1 @@
|
||||
option('foo_system_path', type: 'string', value: '')
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
int bar_built_value (int in);
|
||||
|
||||
int main (int argc, char *argv[])
|
||||
{
|
||||
// this will evaluate to 0
|
||||
return bar_built_value(10) - (42 + 1969 + 10);
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
int some_undefined_func (void);
|
||||
|
||||
int bar_system_value (void)
|
||||
{
|
||||
return some_undefined_func ();
|
||||
}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
int faa_system_value (void)
|
||||
{
|
||||
return 1969;
|
||||
}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
int foo_system_value (void)
|
||||
{
|
||||
return 42;
|
||||
}
|
||||
+22
@@ -0,0 +1,22 @@
|
||||
project('system library', 'c', default_options : ['b_lundef=false'])
|
||||
|
||||
shared_library('foo_in_system', 'foo.c', install : true)
|
||||
l = shared_library('faa_pkg', 'faa.c', install: true)
|
||||
|
||||
if host_machine.system() == 'darwin'
|
||||
ldflags = ['-framework', 'CoreFoundation', '-framework', 'CoreMedia']
|
||||
allow_undef_args = ['-Wl,-undefined,dynamic_lookup']
|
||||
else
|
||||
ldflags = ['-Wl,-rpath,${libdir}']
|
||||
allow_undef_args = []
|
||||
endif
|
||||
|
||||
pkg = import('pkgconfig')
|
||||
pkg.generate(name: 'faa_pkg',
|
||||
libraries: [l] + ldflags,
|
||||
description: 'FAA, a pkg-config test library')
|
||||
|
||||
# cygwin DLLs can't have undefined symbols
|
||||
if host_machine.system() != 'cygwin'
|
||||
shared_library('bar_in_system', 'bar.c', install : true, link_args : allow_undef_args)
|
||||
endif
|
||||
Reference in New Issue
Block a user