cmp: fix linker-cc for msvc

linker-cc for other compilers includes the libpath in the linker
options, therefore for consistency we need it here too.
This commit is contained in:
Marius Gerbershagen 2019-08-20 19:52:25 +02:00
parent 2003b7f999
commit 25d8bf63ef

View file

@ -134,7 +134,10 @@ the environment variable TMPDIR to a different value." template))
,@(split-program-options *user-ld-flags*)
,@ld-flags
,(if (eq type :program)
(concatenate 'string "/IMPLIB:prog" (file-namestring o-pathname) ".lib") "" )))
(concatenate 'string "/IMPLIB:prog" (file-namestring o-pathname) ".lib")
"")
,(concatenate 'string "/LIBPATH:"
(ecl-library-directory))))
(embed-manifest-file o-pathname type)
(delete-msvc-generated-files o-pathname))