mirror of
https://git.freebsd.org/ports.git
synced 2025-06-08 22:30:38 -04:00
The bad news: 1. gcc is still required -- clang can build the binaries, but some self-tests will fail, unless all optimization was disabled. This is, probably, due to some suspect code in bytenumb.c -- would be good to investigate. 2. Building this port in parallel is still not possible -- the Makefile is too convoluted and same sources are recompiled multiple times with different #defines set. The good news: 1. Resolve a large number of warnings. 2. Fix build on ia64 and sparc64 (tested on pluto and flame respectively). Other platforms (alpha, powerpc?) have a better chance of working now...
9 lines
400 B
Text
9 lines
400 B
Text
--- Makefile 2013-03-10 03:29:54.000000000 +0000
|
|
+++ Makefile 2015-01-23 21:59:51.747074000 +0000
|
|
@@ -104,5 +104,5 @@
|
|
ofiles = scm.o time.o repl.o scl.o sys.o eval.o subr.o unif.o rope.o \
|
|
continue.o findexec.o script.o debug.o
|
|
-# continue-ia64.o
|
|
+ofiles+= continue-ia64.o
|
|
ifiles = Init$(VERSION).scm Transcen.scm Link.scm Macro.scm Macexp.scm \
|
|
Tscript.scm compile.scm Iedline.scm Idiffer.scm
|