I noticed that with alpha5, I can no longer build an uberjar with {:aot 
:all} if I depend on [gloss "0.2.4"]:

$ lein uberjar
Compiling alpha5-test.core
java.lang.Exception: Cyclic load dependency: [ /manifold/stream 
]->/manifold/stream/graph->[ /manifold/stream 
]->/byte_streams->/gloss/core/formats->/gloss/data/bytes->/gloss/core/codecs->/gloss/io->/alpha5_test/core,
 
compiling:(manifold/stream/graph.clj:1:1)
at clojure.core$throw_if.doInvoke(core.clj:5612)
at clojure.lang.RestFn.invoke(RestFn.java:442)
at clojure.core$check_cyclic_dependency.invoke(core.clj:5763)
at clojure.core$load.doInvoke(core.clj:5860)
...

Minimal project to reproduce with:

project.clj:

(defproject alpha5-test "0.1.0-SNAPSHOT"
:dependencies [[org.clojure/clojure "1.7.0-alpha5"] [gloss "0.2.4"]]
:profiles {:uberjar {:aot :all}})

src/alpha5_test/core.clj:

(ns alpha5-test.core (:require [gloss.io :refer [decode-all]]))


Br, Janne


On Sunday, 11 January 2015 16:34:07 UTC+2, Alex Miller wrote:
>
> I would greatly appreciate hearing any feedback about this (or any other) 
> alpha, even if it's just: everything looks ok. 
>
> We've had a couple of regressions reported and that is hugely helpful as 
> we can quickly turn around fixes for the next one.   
>
> Interested particularly in: regressions, performance +/-, and for this 
> alpha, AOT.

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to