From 490bb44a940cd52cc7f907e69c4b31f38816714f Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Sun, 8 Jun 2014 11:43:15 -0700 Subject: [PATCH] alien.libraries.finder.linux: some fixes to allow "LLVM-3.4" to find "LLVM-3.4.1". --- basis/alien/libraries/finder/linux/linux.factor | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/basis/alien/libraries/finder/linux/linux.factor b/basis/alien/libraries/finder/linux/linux.factor index 482a55cf03..c2978d1861 100644 --- a/basis/alien/libraries/finder/linux/linux.factor +++ b/basis/alien/libraries/finder/linux/linux.factor @@ -27,15 +27,22 @@ CONSTANT: mach-map { : ldconfig-arch ( -- str ) mach-map cpu of { "libc6" } or ; +: name-matches? ( lib triple -- ? ) + first swap ?head [ ?first CHAR: . = t ] [ f ] if ; + +: arch-matches? ( lib triple -- ? ) + nip second ldconfig-arch subset? ; + : ldconfig-matches? ( lib triple -- ? ) - { [ first head? ] [ nip second ldconfig-arch subset? ] } 2&& ; + { [ name-matches? ] [ arch-matches? ] } 2&& ; : ldconfig-find-soname ( lib -- seq ) - load-ldconfig-cache [ ldconfig-matches? ] with filter [ third ] map ; + load-ldconfig-cache [ ldconfig-matches? ] with filter + [ third ] map ; PRIVATE> M: linux find-library* - "lib" ".so" surround ldconfig-find-soname [ + "lib" prepend ldconfig-find-soname [ { [ exists? ] [ file-info regular-file? ] } 1&& ] map-find nip ;