summaryrefslogtreecommitdiffstats
path: root/build.scm
diff options
context:
space:
mode:
Diffstat (limited to 'build.scm')
-rw-r--r--build.scm40
1 files changed, 21 insertions, 19 deletions
diff --git a/build.scm b/build.scm
index 7f896d4..63249b3 100644
--- a/build.scm
+++ b/build.scm
@@ -457,7 +457,7 @@
(openbsd *unknown* unix gcc ) ;gcc
(os/2-cset i386 os/2 icc ) ;link386
(os/2-emx i386 os/2 gcc ) ;gcc
- (plan9-8 i386 plan9 8c ) ;8l
+;; (plan9-8 i386 plan9 8c ) ;8l
(svr4-gcc-sun-ld sparc sunos gcc ) ;ld
(sunos sparc sunos cc ) ;ld
(svr4 *unknown* unix cc ) ;ld
@@ -505,10 +505,12 @@
(m linux "" "-lm" "/lib/libm.so" () ())
(c linux "" "-lc" "/lib/libc.so" () ())
+ (regex linux "" "" "" () ())
+ (termcap linux "" "-lncurses" "/usr/lib/libncurses.a" () ())
(dlll linux "-DSUN_DL" "-ldl" #f () ())
(graphics linux "-I/usr/include/X11 -DX11" "-L/usr/X11R6/lib -lX11"
"/usr/X11R6/lib/libX11.so" () ())
- (curses linux "" "-lcurses" "/lib/libncurses.so" () ())
+ (curses linux "" "-lncurses" "/usr/lib/libncurses.so" () ())
(nostart linux "" "" #f () ())
(dump linux "" "" #f ("unexelf.c" "gmalloc.c") ())
@@ -529,8 +531,8 @@
(m atari-st-gcc "" "-lpml" #f () ())
(m atari-st-turbo-c "" "" #f () ())
- (c plan9-8 "" "" #f () ())
- (m plan9-8 "" "" #f () ())
+;; (c plan9-8 "" "" #f () ())
+;; (m plan9-8 "" "" #f () ())
(m sunos "" "-lm" #f () ())
(dlll sunos "-DSUN_DL" "-ldl" #f () ())
@@ -1017,21 +1019,21 @@
;; does print a lot of them, indeed.)
;; -p Invoke a standard ANSI C preprocessor before compiling
;; (instead of a rudimentary builtin one used by default).
-(defcommand compile-c-files plan9-8
- (lambda (files parms)
- (and (batch:try-chopped-command
- parms
- "8c" "-Fwp" "-DPLAN9" ;"-V"
- ;;(include-spec "-i" parms)
- (c-includes parms)
- (c-flags parms)
- files)
- (truncate-up-to (map c->8 files) #\/))))
-(defcommand link-c-program plan9-8
- (lambda (oname objects libs parms)
- (and (batch:try-command
- parms "8l" "-o" oname objects libs)
- oname)))
+;;(defcommand compile-c-files plan9-8
+;; (lambda (files parms)
+;; (and (batch:try-chopped-command
+;; parms
+;; "8c" "-Fwp" "-DPLAN9" ;"-V"
+;; ;;(include-spec "-i" parms)
+;; (c-includes parms)
+;; (c-flags parms)
+;; files)
+;; (truncate-up-to (map c->8 files) #\/))))
+;;(defcommand link-c-program plan9-8
+;; (lambda (oname objects libs parms)
+;; (and (batch:try-command
+;; parms "8l" "-o" oname objects libs)
+;; oname)))
(defcommand compile-c-files gcc
(lambda (files parms)