Use .so extension only when input file is a .bin file; otherwise use
authorChris Hanson <org/chris-hanson/cph>
Sun, 15 Apr 2007 19:21:53 +0000 (19:21 +0000)
committerChris Hanson <org/chris-hanson/cph>
Sun, 15 Apr 2007 19:21:53 +0000 (19:21 +0000)
input file's extension.

v7/src/compiler/machines/C/cout.scm

index 91fffaef9b193970d28ce7cef619107698989cae..8c5af178e93b6e05de960666519ef0f06da06999 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Id: cout.scm,v 1.37 2007/04/15 17:36:57 cph Exp $
+$Id: cout.scm,v 1.38 2007/04/15 19:21:53 cph Exp $
 
 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
     1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
@@ -104,7 +104,11 @@ USA.
 
 (define (default-file-handle)
   (or (liarc-object-pathname->handle
-       (pathname-new-type *compiler-output-pathname* (c-output-extension)))
+       (pathname-new-type *compiler-output-pathname*
+                         (let ((t (pathname-type *compiler-input-pathname*)))
+                           (if (equal? t "bin")
+                               (c-output-extension)
+                               t))))
       "handle"))
 \f
 (define (stringify suffix initial-label lap-code info-output-pathname)