Skip to content

Commit d7c11ed

Browse files
committedSep 25, 2013
bundle script
1 parent 82476ec commit d7c11ed

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
 

‎build-deps.lisp

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#|
2+
(handler-bind ((conditions:stack-overflow
3+
#'(lambda (c)
4+
(and (< (current-stack-length) 50000)
5+
(continue)))))
6+
(progn
7+
(asdf:operate 'asdf:monolithic-concatenate-source-op 'bordeaux-threads)
8+
(asdf:operate 'asdf:monolithic-concatenate-source-op 'jsown)
9+
(asdf:operate 'asdf:monolithic-concatenate-source-op 'usocket)))
10+
|#
11+
12+
;(load "/Users/ryanhope/quicklisp/asdf.lisp")
13+
14+
(asdf:defsystem :jni
15+
:depends-on (bordeaux-threads usocket jsown)
16+
:components ((:file "json-network-interface")))
17+
18+
19+
(asdf:operate (make-instance 'asdf::monolithic-concatenate-source-op) (asdf:find-system :jni)))

0 commit comments

Comments
 (0)
Please sign in to comment.