欢迎!请参阅 关于 页面以了解有关该功能的一些更多信息。
这对于 ci 等来说,能够在 deps.edn 或直接在命令行上运行此设置将很有用。
类似于
https://ask.clojure.org/index.php/3787/theres-enable-warn-reflection-from-command-running-clojure
如果没有其他办法,您可以将 -e (set! *unchecked-math* :warn-on-boxed) 添加到您的命令行 clj 调用中,这将在此运行 repl(通过 -r)或主 ns(通过 -m)之前执行。
-e (set! *unchecked-math* :warn-on-boxed)
-r
-m
$ clj -e '(set! *unchecked-math* :warn-on-boxed)' -r :warn-on-boxed (ins)user=> *unchecked-math* :warn-on-boxed