From 15dc8fe99011601fab7038a0f8ee3b10305123a1 Mon Sep 17 00:00:00 2001 From: "Taylor R. Campbell" Date: Sat, 4 Apr 2009 18:41:23 +0000 Subject: [PATCH] Use COMPILER:NOISY? to toggle whether to echo liarc-cc and liarc-ld output. Eliminate non-exported COMPILER:INVOKE-VERBOSE? variable whose purpose has been hereby subsumed. --- v7/src/compiler/machines/C/ctop.scm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/v7/src/compiler/machines/C/ctop.scm b/v7/src/compiler/machines/C/ctop.scm index 09a4bfb00..22263c631 100644 --- a/v7/src/compiler/machines/C/ctop.scm +++ b/v7/src/compiler/machines/C/ctop.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: ctop.scm,v 1.36 2008/09/16 20:13:50 riastradh Exp $ +$Id: ctop.scm,v 1.37 2009/04/04 18:41:23 riastradh Exp $ Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, @@ -34,7 +34,6 @@ USA. (define (compiler:compiled-code-pathname-type) "c") (define compiler:invoke-c-compiler? #t) -(define compiler:invoke-verbose? #t) (define (compiler-file-output compiler-output pathname) (let ((code (cdr (vector-ref compiler-output 1)))) @@ -162,7 +161,7 @@ USA. (cond ((not (= rc 0)) (copy) (error "C compiler returned non-zero exit code:" rc)) - (compiler:invoke-verbose? + (compiler:noisy? (copy)))))) (define (c-output-extension) -- 2.25.1