From 80912efa0d8f6078392c84aac1d03aa18ee7e4fe Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Fri, 30 Aug 1991 17:23:40 +0000 Subject: [PATCH] Changed to use search-lists instead of absolute pathnames for finding the linker, etc. --- code/foreign.lisp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/code/foreign.lisp b/code/foreign.lisp index 239cf13d2..f64cf7b6d 100644 --- a/code/foreign.lisp +++ b/code/foreign.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/foreign.lisp,v 1.6 1991/08/30 17:09:22 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/foreign.lisp,v 1.7 1991/08/30 17:23:40 ram Exp $") ;;; ;;; ********************************************************************** ;;; @@ -175,8 +175,8 @@ (defun load-foreign (files &optional (libraries '("-lc")) - (linker "/usr/misc/.cmucl/lib/load-foreign.csh") - (base-file "/usr/misc/.cmucl/bin/lisp") + (linker "library:load-foreign.csh") + (base-file "path:lisp") (env ext:*environment-list*)) "Load-foreign loads a list of C object files into a running Lisp. The files argument should be a single file or a list of files. The files @@ -193,11 +193,12 @@ (let ((output-file (pick-temporary-file-name)) (symbol-table-file (pick-temporary-file-name)) (error-output (make-string-output-stream))) + (format t ";;; Running ~A...~%" linker) (force-output) (let ((proc (ext:run-program linker (list* (or *previous-linked-object-file* - base-file) + (namestring (truename base-file))) (format nil "~X" *foreign-segment-free-pointer*) output-file -- GitLab