alien.libraries.finder: Allow library to match just by name. Related to #1099.
Add some more unit tests. Fix a typo fidner->finder.db4
parent
1d58f827a2
commit
20a1c09a42
|
@ -1,5 +1,10 @@
|
|||
USING: alien.libraries.finder sequences tools.test ;
|
||||
IN: alien.libraries.fidner.linux
|
||||
USING: alien.libraries.finder sequences tools.test
|
||||
alien.libraries.finder.linux.private ;
|
||||
IN: alien.libraries.finder.linux
|
||||
|
||||
{ t } [ "libm.so" "m" find-library subseq? ] unit-test
|
||||
{ t } [ "libc.so" "c" find-library subseq? ] unit-test
|
||||
|
||||
{ t } [ "libSDL" { "libSDL-1.2.so.0" f f } name-matches? ] unit-test
|
||||
{ t } [ "libSDL-1" { "libSDL-1.2.so.0" f f } name-matches? ] unit-test
|
||||
{ t } [ "libSDL-1.2" { "libSDL-1.2.so.0" f f } name-matches? ] unit-test
|
||||
|
|
|
@ -32,7 +32,7 @@ CONSTANT: mach-map {
|
|||
mach-map cpu of { "libc6" } or ;
|
||||
|
||||
: name-matches? ( lib triple -- ? )
|
||||
first swap ?head [ ?first CHAR: . = ] [ drop f ] if ;
|
||||
first swap ?head [ ?first ".-" member? ] [ drop f ] if ;
|
||||
|
||||
: arch-matches? ( lib triple -- ? )
|
||||
[ drop ldconfig-arch ] [ second swap subset? ] bi* ;
|
||||
|
|
Loading…
Reference in New Issue