ecl/src/compile.lsp.in
Daniel Kochmański 1398fd381a cleanup: purge clx
2016-09-07 14:58:50 +02:00

357 lines
12 KiB
Common Lisp
Executable file

;;;; -*- Mode: Lisp; Syntax: Common-Lisp; indent-tabs-mode: nil -*-
;;;; vim: set filetype=lisp tabstop=8 shiftwidth=2 expandtab:
;;; @configure_input@
;;;
;;; This is the "makefile" file for building ECL. The purpose of this file is
;;; - Compile the core of the Common-Lisp library (lsp, clos)
;;; - Compile the compiler (cmp)
;;; - Build an executable
;;; This can be done in two ways:
;;; - Using interpreted code and the ECL_MIN minimal environment.
;;; - On a second stage, using the final ECL executable, to test it.
;;;
(progn
(setq *package* (find-package "SYSTEM"))
(setq *features* @LSP_FEATURES@))
;;;
;;; * Ensure that we have the whole of Common-Lisp to compile
;;;
(load "bare.lsp" :verbose nil)
;;;
;;; * Complain about functions which are not in the core
;;;
#+(or)
(let ((wrong-symbols '()))
(let ((*standard-output* (make-broadcast-stream)))
(dolist (p '("CL" "SI" "EXT" "CLOS"))
(do-symbols (s (find-package p))
(when (and (fboundp s)
(not (typep (fdefinition s) '(or list generic-function)))
(si::mangle-name s)
(si::bc-disassemble (fdefinition s)))
(pushnew s wrong-symbols)))))
(format t "~%;;; Functions that can be made into the core:~%")
(pprint (set-difference wrong-symbols c::*in-all-symbols-functions*)))
;;;
;;; * Force compiler constants only for the core library
;;;
(setf *use-static-constants-p* t)
;;;
;;; * Dump documentation
;;;
#+stage1
(progn
(load "ext:ecl-cdb;ecl-cdb")
(load "ext:ecl-cdb;ecl-help")
(load "@true_srcdir@/doc/help.lsp")
(si::dump-documentation "@true_builddir@/help.doc"))
;;;
;;; * Trick to make names shorter in C files
;;;
(si::package-lock "CL" nil)
(rename-package "CL" "CL" '("COMMON-LISP" "LISP"))
;;;
;;; * Add include path to not yet installed headers, and remove include flag
;;; (-I) to installed directory, and Notice that we must explicitely mention
;;; libecl.so/ecl.dll instead of using -lecl. This is to avoid interference
;;; with an already installed copy of ECL.
;;;
(setq c::*cc-flags*
#-msvc "@CPPFLAGS@ @CFLAGS@ @ECL_CFLAGS@ -I\"@true_srcdir@/c\""
#+msvc "@CFLAGS@ @ECL_CFLAGS@"
c::*ecl-include-directory* "@true_builddir@/"
c::*ecl-library-directory* "@true_builddir@/")
#-:wants-dlopen
(setf c::*ld-flags*
"@LDFLAGS@ @LIBPREFIX@ecl.@LIBEXT@ @CORE_LIBS@ @FASL_LIBS@ @LIBS@")
#+(and :wants-dlopen (not nonstop))
(setf c::*ld-flags*
"@LDFLAGS@ @SHAREDPREFIX@ecl.@SHAREDEXT@ @LIBS@"
c::*ld-shared-flags*
"@SHARED_LDFLAGS@ @LDFLAGS@ @SHAREDPREFIX@ecl.@SHAREDEXT@ @FASL_LIBS@ @LIBS@"
c::*ld-bundle-flags*
"@BUNDLE_LDFLAGS@ @LDFLAGS@ @SHAREDPREFIX@ecl.@SHAREDEXT@ @FASL_LIBS@ @LIBS@")
;;; FIXME: The nonstop platform does not support soname
#+(and :wants-dlopen nonstop)
(setf c::*ld-flags*
"@LDFLAGS@ -Wld=-l@SHAREDPREFIX@ecl.@SHAREDEXT@ @LIBS@"
c::*ld-shared-flags*
"@SHARED_LDFLAGS@ @LDFLAGS@ -Wld=-l@SHAREDPREFIX@ecl.@SHAREDEXT@ @FASL_LIBS@ @LIBS@"
c::*ld-bundle-flags*
"@BUNDLE_LDFLAGS@ @LDFLAGS@ -Wld=-l@SHAREDPREFIX@ecl.@SHAREDEXT@ @FASL_LIBS@ @LIBS@")
;;;
;;; * Avoid name clashes with user supplied code.
;;;
(setq si::*init-function-prefix* "ECL")
;;;
;;; * Clean up a little bit before moving on
;;;
(mapc #'delete-file (directory "eclinit*.*"))
;;;
;;; * Compile and link Common-Lisp base library
;;;
(setq si::*keep-documentation* nil)
(mapc #'proclaim +ecl-optimization-settings+)
(let* ((c::*cc-flags* (concatenate 'string "-DECL_API -I\"@true_builddir@/c\" " c::*cc-flags*))
(lsp-objects (compile-if-old "build:lsp;" +lisp-module-files+
:system-p t :c-file t :data-file t :h-file t
;;:shared-data-file "build:ecl.sdat"
)))
#+CLOS
(let* ((c::*compile-to-linking-call* nil))
(mapc #'proclaim +ecl-optimization-settings+)
(setq lsp-objects (append lsp-objects
(compile-if-old "build:clos;" +clos-module-files+
:system-p t :c-file t :data-file t
:h-file t
;;:shared-data-file "build:ecl.sdat"
))))
(let ((extra-lisp-files '(@ECL_EXTRA_LISP_FILES@)))
(when extra-lisp-files
(setq lsp-objects (append lsp-objects
(compile-if-old "build:ext;" extra-lisp-files
:system-p t :c-file t :data-file t
:h-file t
;;:shared-data-file "build:ecl.sdat"
)))))
(c::build-static-library "lsp" :lisp-files lsp-objects
;;:shared-data-file "build:ecl.sdat"
))
#-:wants-dlopen
(c::safe-system
(concatenate 'string
"sh -c 'rm -rf tmp; mkdir tmp;"
"cp @LIBPREFIX@eclmin.@LIBEXT@ @LIBPREFIX@ecl.@LIBEXT@;"
"cd tmp; @AR@ -x ../@LIBPREFIX@lsp.@LIBEXT@;"
"for i in *.@OBJEXT@; do mv $i lsp_`basename $i`; done;"
"@AR@ -r ../@LIBPREFIX@ecl.@LIBEXT@ *.@OBJEXT@ ../c/all_symbols2.@OBJEXT@; rm *.@OBJEXT@;"
"@RANLIB@ ../@LIBPREFIX@ecl.@LIBEXT@'"))
#+:wants-dlopen
;;;
;;; We do not need the -rpath flag for the library, nor -lecl.
;;;
(let* ((c::*ld-shared-flags* #-msvc "@SHARED_LDFLAGS@ @LDFLAGS@ @SONAME_LDFLAGS@ @CORE_LIBS@ @FASL_LIBS@ @LIBS@"
#+msvc "@SHARED_LDFLAGS@ @LDFLAGS@ @STATICLIBS@ @CLIBS@")
(c::*cc-flags* (concatenate 'string "-DECL_API -I@true_builddir@/c " c::*cc-flags*))
(extra-args nil))
#+(or mingw32 cygwin)
(progn
;; We need these two to force dllwrap to export the symbols
;; in these libraries. Otherwise it will not be possible to
;; call functions from GMP or GC in code that embeds ECL.
#+thread
(when (probe-file "@LIBPREFIX@atomic_ops.@LIBEXT@")
(push "@LIBPREFIX@atomic_ops.@LIBEXT@" extra-args))
(when (probe-file "@LIBPREFIX@eclgc.@LIBEXT@")
(push "@LIBPREFIX@eclgc.@LIBEXT@" extra-args))
(when (probe-file "@LIBPREFIX@eclgmp.@LIBEXT@")
(push "@LIBPREFIX@eclgmp.@LIBEXT@" extra-args)))
(print extra-args)
(c::shared-cc (compile-file-pathname "ecl" :type :dll)
(list* "c/main.@OBJEXT@"
"c/all_symbols2.@OBJEXT@"
"@LIBPREFIX@lsp.@LIBEXT@"
"@LIBPREFIX@eclmin.@LIBEXT@"
extra-args)))
;;;
;;; * Compile and link Common-Lisp to C compiler
;;;
(mapc #'proclaim +ecl-optimization-settings+)
#-mingw32
(si::pathname-translations "SYS" '(("**;*.*.*" "@ecldir\@/**/*.*")))
#+WANTS-CMP
(build-module "cmp" +cmp-module-files+
:dir "build:@ECL_CMPDIR@;" :prefix "CMP"
:builtin #+:BUILTIN-CMP t #-:BUILTIN-CMP nil)
(build-module "ecl-cdb" '("ext:ecl-cdb;ecl-cdb.lisp")
:dir "build:ext;" :prefix "EXT"
:builtin #+:WANTS-DLOPEN nil #-:WANTS-DLOPEN t)
(build-module "ecl-help" '("ext:ecl-cdb;ecl-cdb.lisp"
"ext:ecl-cdb;ecl-help.lisp")
:dir "build:ext;" :prefix "EXT"
:builtin #+:WANTS-DLOPEN nil #-:WANTS-DLOPEN t)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; EXTENSIONS
;;;
;;;
;;; * SSE
;;;
#+(and WANTS-CMP SSE2)
(build-module "cl-simd"
'("ext:cl-simd;sse-package.lisp"
"ext:cl-simd;ecl-sse-core.lisp"
"ext:cl-simd;sse-intrinsics.lisp"
"ext:cl-simd;sse-array-defs.lisp"
"ext:cl-simd;ecl-sse-utils.lisp"
"ext:cl-simd;sse-utils.lisp")
:dir "build:ext;"
:prefix "EXT"
:builtin nil)
;;;
;;; * DEFSYSTEM
;;;
#+WANTS-DEFSYSTEM
(build-module "defsystem"
'("ext:defsystem;defsystem.lisp")
:dir "build:ext;"
:prefix "EXT"
:builtin #+:BUILTIN-DEFSYSTEM t #-:BUILTIN-DEFSYSTEM nil)
;;;
;;; * ASDF
;;;
#+WANTS-ASDF
(build-module "asdf"
'("ext:asdf;asdf.lisp")
:dir "build:ext;"
:prefix "EXT"
:builtin #+:BUILTIN-ASDF t #-:BUILTIN-ASDF nil)
;;;
;;; * PROFILE
;;;
#+(and WANTS-PROFILE (not (or cygwin mingw32)))
(build-module "profile"
'("ext:profile;profile.lisp")
:dir "build:ext;"
:prefix "EXT"
:builtin
#+(or (NOT :WANTS-DLOPEN) :BUILTIN-PROFILE) t
#-(or (NOT :WANTS-DLOPEN) :BUILTIN-PROFILE) nil)
;;;
;;; * Sockets library.
;;;
#+WANTS-SOCKETS
(build-module "sockets"
'("ext:sockets;package.lisp"
"ext:sockets;sockets.lisp")
:dir "build:ext;"
:prefix "EXT"
:builtin
#+(or (NOT :WANTS-DLOPEN) :BUILTIN-SOCKETS) t
#-(or (NOT :WANTS-DLOPEN) :BUILTIN-SOCKETS) nil)
#+WANTS-SOCKETS
(build-module "sb-bsd-sockets"
'("ext:sockets;sb-bsd-sockets.lisp")
:depends-on '("sockets")
:dir "build:ext;"
:prefix "EXT"
:builtin nil)
#+WANTS-SERVE-EVENT
(build-module "serve-event"
'("ext:serve-event;serve-event.lisp")
:dir "build:ext;"
:prefix "EXT"
:builtin
#+(or (NOT :WANTS-DLOPEN) :BUILTIN-SERVE-EVENT) t
#-(or (NOT :WANTS-DLOPEN) :BUILTIN-SERVE-EVENT) nil)
#+WANTS-SOCKETS
(build-module "ecl-curl"
'("ext:ecl-curl;ecl-curl.lisp")
:dir "build:ext;"
:prefix "EXT"
:builtin nil)
#+WANTS-SOCKETS
(build-module "ql-minitar"
'("ext:quicklisp;minitar.lisp")
:dir "build:ext;"
:prefix "EXT"
:builtin nil)
#+WANTS-SOCKETS
(build-module "deflate"
'("ext:deflate;deflate.lisp")
:dir "build:ext;"
:prefix "EXT"
:builtin nil)
#+WANTS-SOCKETS
(build-module "ecl-quicklisp"
'("ext:quicklisp;ecl-quicklisp.lisp")
:dir "build:ext;"
:prefix "EXT"
:builtin nil)
;;;
;;; * Test suite
;;;
#+WANTS-RT
(build-module "rt"
'("ext:rt;rt.lisp")
:dir "build:ext;"
:prefix "EXT"
:builtin #+:BUILTIN-RT t #-:BUILTIN-RT nil)
;;;
;;; * External formats
;;;
#+UNICODE
(load "ext:encodings;generate.lisp")
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; THE FINAL EXECUTABLE
;;;
(setq si::*init-function-prefix* NIL)
#+windows
(progn
(with-open-file (s "ecl.rc"
:direction :output
:if-exists :supersede
:if-does-not-exist :create)
(write-line "id ICON \"ecl.ico\"" s))
(ext:copy-file #p"src:util;ecl.ico" "ecl.ico")
#+msvc
(ext:run-program "rc" '("/r" "ecl.rc"))
#-msvc
(ext:run-program "windres" '("ecl.rc" "-O" "coff" "ecl.res")))
(si::pathname-translations "SYS" '(("**;*.*.*" "@true_builddir@/**/*.*")))
(compiler::build-program
#+:msvc "ecl2"
#+(and (or cross stage1) (not msvc)) "bin/ecl"
#-(or cross stage1 msvc) "ecl2"
:epilogue-code '@ECL_INIT_FORM@
:lisp-files *module-symbols*
:ld-flags
(concatenate 'list #-msvc '("-L./") #+windows '("ecl.res" #+msvc "/F 10485760")))
(with-open-file (modules-list #P"build:MODULES" :direction :output
:if-exists :supersede
:if-does-not-exist :create)
(print *module-files*)
(dolist (module-file *module-files*)
(format modules-list "~A~%" module-file)))
(quit)