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
G
gendl
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
47
Issues
47
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gendl
gendl
Commits
846095ca
Commit
846095ca
authored
Sep 16, 2017
by
Dave Cooper
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
made load-quicklisp work more smoothly
parent
70babdce
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
4 deletions
+12
-4
base/source/package.lisp
base/source/package.lisp
+1
-0
base/source/utilities.lisp
base/source/utilities.lisp
+5
-4
glisp/source/genworks.lisp
glisp/source/genworks.lisp
+6
-0
No files found.
base/source/package.lisp
View file @
846095ca
...
...
@@ -377,6 +377,7 @@ If you are interested in this effort we would love to hear from you at open-sour
#:run-command
#:temporary-folder
#:*temporary-folder-function*
#:*utf-16-ef*
#:temporary-file
#:find-gs-path
...
...
base/source/utilities.lisp
View file @
846095ca
...
...
@@ -437,11 +437,12 @@ keyword argument to this function.
:&key ((path *quicklisp-home*) \"Pathname or string. Quicklisp location.\")
"
(
let
((
ql-loader
(
or
(
probe-file
(
merge-pathnames
"program/load-ql.lisp"
glisp:*gendl-home*
))
(
probe-file
(
merge-pathnames
"../load-ql.lisp"
*quicklisp-home*
)))))
(
if
(
probe-file
ql-loader
)
(
let
((
ql-loader
(
or
(
probe-file
(
merge-pathnames
"program/load-ql.lisp"
glisp:*gendl-home*
))
;; linux, windows prebuilt image
(
probe-file
(
merge-pathnames
"load-ql.lisp"
glisp:*gendl-home*
))
;; Mac prebuilt image
(
probe-file
(
merge-pathnames
"../load-ql.lisp"
*quicklisp-home*
)))))
;; loading from source
(
if
(
and
ql-loader
(
probe-file
ql-loader
))
(
let
((
*quicklisp-home*
path
))
(
load
ql-loader
))
(
warn
"
~s does not exist
.~%"
ql-loader
))))
(
warn
"
load-ql.lisp was not found in ~a
.~%"
ql-loader
))))
(
defun
load-glime
()
...
...
glisp/source/genworks.lisp
View file @
846095ca
...
...
@@ -33,6 +33,12 @@
(
defparameter
*temporary-folder-function*
#'
(
lambda
()
(
merge-pathnames
"tmp/"
(
user-homedir-pathname
))))
(
defparameter
*utf-16-ef*
#+
allegro
:unicode
#+
sbcl
:utf-16le
#+
ccl
:utf-16
)
#-
(
or
allegro
lispworks
sbcl
ccl
)
(
warn
"~&Please implement concatenate-fasls for the currently running lisp.~%"
)
...
...
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