Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
abcl
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abcl
abcl
Commits
3dcf0b2f
Commit
3dcf0b2f
authored
Feb 08, 2010
by
mevenson@1c010e3e-69d0-11dd-93a8-456734b0d56f
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert r12430 because it fails to signal errors in a meaningful manner.
parent
6b74a5af
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
4 deletions
+28
-4
build.xml
build.xml
+28
-4
No files found.
build.xml
View file @
3dcf0b2f
...
...
@@ -220,19 +220,43 @@ For help on the automatic tests available, use the Ant target 'help.test'.
<path
id=
"abcl.lisp.output.path"
location=
"${build.classes.dir}/org/armedbear/lisp/"
/>
<pathconvert
dirsep=
"/"
property=
"abcl.lisp.output"
refid=
"abcl.lisp.output.path"
/>
<target
name=
"abcl.compile.lisp"
depends=
"abcl.copy.lisp,abcl.compile.java,abcl.fasls.uptodate"
unless=
"abcl.fasls.uptodate.p"
>
<java
classpath=
"${build.classes.dir}"
<!-- The following shenanigans are necessary to get something
that ABCL under Windows can parse as a pathname with the
drive syntax not being interpreted as a Lisp package
namespace, and with backslash characters not starting
escape sequences. -->
<tempfile
property=
"abcl.compile.lisp.tmp"
suffix=
".lisp"
/>
<echo
file=
"${abcl.compile.lisp.tmp}"
>
(compile-system :zip nil :quit t
:output-path "${toString:abcl.lisp.output.path}${file.separator}")
</echo>
<tempfile
property=
"abcl.compile.lisp.tmp.2"
suffix=
".lisp"
/>
<copy
file=
"${abcl.compile.lisp.tmp}"
tofile=
"${abcl.compile.lisp.tmp.2}"
>
<filterchain>
<replacestring
from=
"\"
to=
"/"
/>
</filterchain>
</copy>
<java
classpath=
"${build.classes.dir}"
fork=
"true"
failonerror=
"true"
inputstring=
"(compile-system :zip nil :quit t :output-path "${abcl.lisp.output}/")'"
classname=
"org.armedbear.lisp.Main"
>
<jvmarg
value=
"-Dabcl.home=${abcl.home.dir}${file.separator}"
/>
<arg
value=
"--noinit"
/>
<arg
value=
"--load"
/>
<arg
value=
"${abcl.compile.lisp.tmp.2}"
/>
</java>
<delete
file=
"${abcl.compile.lisp.tmp}"
/>
<delete
file=
"${abcl.compile.lisp.tmp.2}"
/>
</target>
<property
name=
"abcl.build.path"
...
...
@@ -698,7 +722,7 @@ ${basedir}/../cl-bench
<record
name=
"${abcl.test.log.file}"
emacsmode=
"true"
action=
"stop"
/>
<echo>
Finished recording test output in ${abcl.test.log.file}.
</echo>
</target>
<target
name=
"abcl.release"
depends=
"abcl.binary.tar,abcl.source.tar,abcl.binary.zip,abcl.source.zip"
>
<copy
file=
"${abcl.jar.path}"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment