source: tags/0.00.6/j/customizations.lisp

Last change on this file was 9408, checked in by piso, 19 years ago

Work in progress.

File size: 1.1 KB
Line 
1;;; customizations.lisp
2
3;;; User customizations for the build.
4
5;;; This file is LOADed by INITIALIZE-BUILD (in build-abcl.lisp).
6
7;;; The variable *PLATFORM-IS-WINDOWS* should be true on Windows platforms. You
8;;; can, of course, substitute your own test for this in the code below, or add
9;;; a section for OS X, or Solaris, or whatever...
10
11;;; You MUST set *JDK* to the location of the JDK you want to use. Remove or
12;;; comment out settings that don't apply to your situation.
13
14;;; You don't really need to specify anything but *JDK*. *JAVA-COMPILER* and
15;;; *JAR* default to javac and jar, respectively, from the configured JDK.
16
17;;; Directories should be specified with a trailing slash (or, on Windows, a
18;;; trailing backslash).
19
20(in-package #:build-abcl)
21
22;; Standard compiler options.
23(setf *javac-options* "-g")
24(setf *jikes-options* "+D -g")
25
26(cond (*platform-is-windows*
27       (setf *jdk* "C:\\Program Files\\Java\\jdk1.5.0_02\\")
28       (setf *java-compiler* "jikes"))
29      (t
30       ;; Linux
31       (setf *jdk* "/home/peter/blackdown/j2sdk1.4.2/")
32       (setf *java-compiler* "jikes")
33       (setf *jar* "fastjar")))
Note: See TracBrowser for help on using the repository browser.