mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-07 09:50:25 -08:00
Safer when compiling from a directory with spaces in the name.
This commit is contained in:
parent
b59a1c4c47
commit
6ecf3c65c7
2 changed files with 2 additions and 2 deletions
|
|
@ -320,7 +320,7 @@ static cl_object VV[VM];
|
|||
(unwind-protect
|
||||
(progn
|
||||
(with-open-file (f "static_lib.tmp" :direction :output :if-does-not-exist :create :if-exists :supersede)
|
||||
(format f "/DEBUGTYPE:CV /OUT:~A ~A ~{\"~&~A\"~}"
|
||||
(format f "/DEBUGTYPE:CV /OUT:~A ~A ~{~&\"~A\"~}"
|
||||
output-name o-name ld-flags))
|
||||
(safe-system "link -lib @static_lib.tmp"))
|
||||
(when (probe-file "static_lib.tmp")
|
||||
|
|
|
|||
|
|
@ -68,7 +68,7 @@
|
|||
;;;
|
||||
(setq si::*keep-documentation* nil)
|
||||
(proclaim '(optimize (safety 2) (space 3)))
|
||||
(let* ((c::*cc-flags* (concatenate 'string "-I@true_builddir@/c " c::*cc-flags*))
|
||||
(let* ((c::*cc-flags* (concatenate 'string "-I\"@true_builddir@/c\" " c::*cc-flags*))
|
||||
(lsp-objects (compile-if-old "build:lsp;" +lisp-module-files+
|
||||
:system-p t :c-file t :data-file t :h-file t
|
||||
;;:shared-data-file "build:ecl.sdat"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue