From 7beedc12c82fb1ccb8d6d272c9bcaf606fa2ae67 Mon Sep 17 00:00:00 2001 From: Juan Jose Garcia Ripoll Date: Sat, 29 Oct 2011 20:30:46 +0200 Subject: [PATCH] Fixed list of compiled/library/executable file extensions in cmpmain.lsp --- src/cmp/cmpmain.lsp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/cmp/cmpmain.lsp b/src/cmp/cmpmain.lsp index d25febad4..0fac5d519 100755 --- a/src/cmp/cmpmain.lsp +++ b/src/cmp/cmpmain.lsp @@ -317,9 +317,15 @@ WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdS "Given a file name, guess whether it is an object file, a library, a program or a loadable module." (let ((record (assoc (pathname-type pathname) - '(("o" :object) ("obj" :object) ("c" :c) + '((#.+object-file-extension+ :object) + ("o" :object) + ("obj" :object) + ("c" :c) + (#.+static-library-extension+ :static-library) ("lib" :static-library) ("a" :static-library) + (#.+shared-library-extension+ :shared-library) + ("dylib" :shared-library) ("dll" :shared-library) ("so" :shared-library) ("fas" :fasl))