-
Notifications
You must be signed in to change notification settings - Fork 85
Lumo builds for Raspberry Pi AArch64 / Arm v8 platform. #459
Comments
Hi @anmonteiro , today I've given it another shot and I came across the following error towards the very end of the build log $ cross-env NODE_ENV=production node scripts/bundle.js
Building production bundle...
Circular dependency: src/js/cljs.js -> src/js/repl.js -> src/js/cljs.js
Circular dependency: src/js/cli.js -> src/js/cljs.js -> src/js/repl.js -> src/js/socketRepl.js -> src/js/cli.js
Circular dependency: src/js/repl.js -> src/js/socketRepl.js -> src/js/repl.js
Circular dependency: src/js/cljs.js -> src/js/repl.js -> src/js/socketRepl.js -> src/js/cljs.js
Done in 81.20s.
Error attempting to play sound file: Cannot create AudioDevice
java.lang.Thread.run Thread.java: 748
java.util.concurrent.ThreadPoolExecutor$Worker.run ThreadPoolExecutor.java: 624
java.util.concurrent.ThreadPoolExecutor.runWorker ThreadPoolExecutor.java: 1149
java.util.concurrent.FutureTask.run FutureTask.java: 266
...
clojure.core/binding-conveyor-fn/fn core.clj: 2030
boot.core/boot/fn core.clj: 1032
boot.core/run-tasks core.clj: 1022
boot.task.built-in/fn/fn/fn/fn built_in.clj: 245
boot.user$eval1082$fn__1083$fn__1090$fn__1091.invoke : 79
adzerk.boot-cljs/eval361/fn/fn/fn boot_cljs.clj: 169
adzerk.boot-cljs/eval418/fn/fn/fn boot_cljs.clj: 250
boot.task.built-in/fn/fn/fn/fn built_in.clj: 636 (repeats 4 times)
boot.user$eval1165$fn__1166$fn__1173$fn__1174.invoke : 107
boot.user$eval1208$fn__1209$fn__1216$fn__1217.invoke : 123
boot.task.built-in/fn/fn/fn/fn built_in.clj: 636
boot.task.built-in/fn/fn/fn/fn built_in.clj: 394
boot.user$eval1121$fn__1122$fn__1129$fn__1130.invoke : 95
...
boot.util/dosh util.clj: 478
java.lang.Exception: node: non-zero exit status (137)
clojure.lang.ExceptionInfo: node: non-zero exit status (137)
line: 240
Could you give me a bit of guidance here please? :) |
Run |
Okay, so I tried what you suggested and here's the output of
I looked for something like |
After cloning from scratch and then running |
That error just doesn't tell me anything. There has to be more information somewher. |
Oh okay, I'm pasting the entire log here now
|
@anmonteiro , so I've been trying to pin-point exactly where the build really fails and created a copy of I've tested all the tasks within the (deftask release-arm []
(comp
(install-node-modules)
(compile-cljs)
(sift-cljs-resources)
(cache-edn->transit)
(write-core-analysis-caches)
(target)
(bundle-js)
(prepare-snapshot)
(backup-resources)
;; STARTS FAILING AT THIS POINT
;; Package first stage binary
(package-executable :ci-build true)
#_(aot-macros)
;; Package final executable
#_(package-executable :ci-build true)))
Howerver, as soon as I came across the
Does this give you an idea about where we need to debug? |
@mfikes , if possible could you please spare some time here as well? I'm planning to use |
I'm trying to build lumo from source in a Debian Buster chroot and am now stuck at the same error: I had to hack in a bunch of EDIT: here's more context:
it looks like the build process isn't stopping at the first error? EDIT2: here's my amd64 build scripts: https://gist.github.com/cellularmitosis/df87e0c962e184b8bd29c8a3f07f3db4 |
Hi @anmonteiro , I was wondering if it's possible to use
lumo
on theRPi
platform and whether you would consider including that in the future releases?The text was updated successfully, but these errors were encountered: