Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Karsten Poeck
asdf
Commits
ee9a35ac
Commit
ee9a35ac
authored
Jan 11, 2020
by
Karsten Poeck
Browse files
Include drmeister changes for parallel compilation
parent
56153150
Changes
1
Hide whitespace changes
Inline
Side-by-side
uiop/lisp-build.lisp
View file @
ee9a35ac
...
...
@@ -767,9 +767,11 @@ it will filter them appropriately."
(
when
(
probe-file
temp-dwarf
)
(
rename-file-overwriting-target
temp-dwarf
target-dwarf
)))
;;; need to rename the bc or ll file as well or test-bundle.script fails
(
rename-file-overwriting-target
(
compile-file-pathname
tmp-file
:output-type
:bitcode
)
(
compile-file-pathname
physical-output-file
:output-type
:bitcode
))
;;; They might not exist with parallel compilation
(
let
((
bitcode-src
(
compile-file-pathname
tmp-file
:output-type
:bitcode
))
(
bitcode-target
(
compile-file-pathname
physical-output-file
:output-type
:bitcode
)))
(
when
(
probe-file
bitcode-src
)
(
rename-file-overwriting-target
bitcode-src
bitcode-target
)))
(
rename-file-overwriting-target
tmp-object-file
object-file
))
(
rename-file-overwriting-target
output-truename
physical-output-file
)
(
setf
output-truename
(
truename
physical-output-file
)))
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment