Skip to content

feature testing not work as intended at compile time #474

@VitoVan

Description

@VitoVan
(defpackage :common-lisp-user)

#+jscl
(defun hello ()
  (format t "Hello, yes JSCL ~%"))

#-jscl
(defun hello ()
  (format t "Hello, no JSCL ~%"))

(hello)

This piece of code should output "Hello, yes JSCL", right?

But after compiling, it output "Hello, no JSCL".

sbcl --load jscl.lisp --eval '(jscl:bootstrap)' --eval '(jscl:compile-application (list "feature-test.lisp") "main.js")' --eval '(quit)'

imagen

Is this a bug?

I wish to use the same Lisp code to compile on different platforms, like SBCL and ECL and JSCL, how to detect JSCL at compile time?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions