Some clojure namespaces not AOT-compiled and included in the clojure jar

Description

There is a list of namespaces to AOT in build.xml and several namespaces are missing from that list, thus no .class files for those namespaces are created or included in the standard clojure jar file as part of the build.

Missing namespaces include:

  • clojure.core.reducers

  • clojure.instant

  • clojure.parallel

  • clojure.uuid

Proposal:

  • Add clojure.instant, clojure.uuid, clojure.core.reducers to the namespaces to compile

  • clojure.parallel is deprecated and requires the JSR-166 jar - do not add

Patch: clj-1509.patch

Environment

None

Attachments

1

Activity

Show:

Alex Miller September 14, 2021 at 2:59 PM

Applied for 1.11.0-alpha2

Alex Miller February 12, 2019 at 5:17 PM

Actually clojure.parallel is still dependent on things that only exist in jsr166, but all the others have had conditionality removed. Added missing patch.

Alex Miller February 12, 2019 at 5:06 PM

As of Clojure 1.10, which relies on Java 1.8, all of these conditional build cases have been removed. I believe clojure.instant and clojure.uuid are being transitively compiled now, though not explicitly.

Alex Miller August 20, 2014 at 7:06 PM

Looking at this a bit further, clojure.core.reducers uses the compile-if macro to determine what version of fork/join is available so AOT-compiling this namespace would fix that decision at build time rather than runtime, so it cannot be included.

Fixed

Details

Assignee

Reporter

Labels

Approval

Ok

Patch

Code

Priority

Affects versions

Fix versions

Created August 20, 2014 at 6:59 PM
Updated September 14, 2021 at 2:59 PM
Resolved September 14, 2021 at 2:59 PM