aboutsummaryrefslogtreecommitdiff
path: root/src/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lisp')
-rw-r--r--src/lisp/core.lisp.in7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lisp/core.lisp.in b/src/lisp/core.lisp.in
index 8cb2f755..38ebcc5b 100644
--- a/src/lisp/core.lisp.in
+++ b/src/lisp/core.lisp.in
@@ -74,6 +74,7 @@
"$targetPlatform"
"$faslType"
+ "$effectiveFaslType"
"$NativeModuleExt"
"$systemInstallationDirectory"
"$NativeTypeTable"
@@ -140,6 +141,12 @@
(defconstant |$faslType|
(pathname-type (compile-file-pathname "foo.lisp")))
+(defconstant |$effectiveFaslType|
+ ;#+:ecl (pathname-type (compile-file-pathname "foo.lisp" :system-p t))
+ ;; until ECL is fixed, return a hard coded value
+ "o"
+ #-:ecl |$faslType|)
+
;; Extension of file containers for native shared libraries.
(defconstant |$NativeModuleExt|
"@SHREXT@")