Merge branch 'develop' into 'develop'

cmpmain: fix link(msvc) arguments in linker-ar

See merge request embeddable-common-lisp/ecl!183
This commit is contained in:
Daniel Kochmański 2020-02-10 09:25:55 +00:00
commit 5d5fcc40d2

View file

@ -165,7 +165,7 @@ the environment variable TMPDIR to a different value." template))
:if-does-not-exist :create :if-exists :supersede)
(format f "/OUT:~A ~A ~{~&\"~A\"~}"
output-name o-name ld-flags))
(safe-run-program "link" '("-lib -nologo" "@static_lib.tmp")))
(safe-run-program "link" '("-lib" "-nologo" "@static_lib.tmp")))
(when (probe-file "static_lib.tmp")
(cmp-delete-file "static_lib.tmp"))))