~ chicken-core (chicken-5) 4c79400068010ef8e5b4cf77eccf318ba28c9013
commit 4c79400068010ef8e5b4cf77eccf318ba28c9013
Author: felix <felix@call-with-current-continuation.org>
AuthorDate: Fri Jan 13 13:54:45 2017 +0100
Commit: felix <felix@call-with-current-continuation.org>
CommitDate: Fri Jan 13 13:54:45 2017 +0100
egg-compile: avoid unnecessary -emit-link-file options
diff --git a/egg-compile.scm b/egg-compile.scm
index 4791cb49..cd128628 100644
--- a/egg-compile.scm
+++ b/egg-compile.scm
@@ -358,7 +358,6 @@
" -setup-mode -static -I " srcdir
" -D compiling-extension -c -J -unit " name
" -D compiling-static-extension"
- " -emit-link-file " (quotearg (conc sname ".link"))
" -C -I" srcdir (arglist options)
" " src " -o " out " : "
src #;(arglist dependencies))))
@@ -430,7 +429,6 @@
(src (quotearg (or ssname (conc sname ".scm")))))
(print "\n" (slashify default-builder platform) " " out " " cmd
(if keep-generated-files " -k" "")
- " -emit-link-file " (quotearg (conc sname ".link"))
" -static -setup-mode -I " srcdir " -C -I"
srcdir (arglist options)
(arglist link-options) " " src " -o " out " : "
Trap