mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-14 21:32:49 -08:00
Fixed list of compiled/library/executable file extensions in cmpmain.lsp
This commit is contained in:
parent
a0dacd6175
commit
7beedc12c8
1 changed files with 7 additions and 1 deletions
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue