Fixed list of compiled/library/executable file extensions in cmpmain.lsp

This commit is contained in:
Juan Jose Garcia Ripoll 2011-10-29 20:30:46 +02:00
parent a0dacd6175
commit 7beedc12c8

View file

@ -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))