Fork me on GitHub
#babashka
<
2021-01-09
>
valtteri16:01:26

Has anyone tried compiling bb for ARM? I was thinking about trying it out on my Lego robot and see if I could get a remote REPL where I could control the robot. :robot_face: It looks like at least GraalVM should support ARM but I’d rather not compile the binary on the Lego brick because if it even can manage it it’ll probably take hours…?

borkdude16:01:08

@valtteri There are some directions in this issue: https://github.com/babashka/babashka/issues/241

👍 3
pez16:01:24

I remember watching a vid where @nate used Clojure deps while developing and then built stuff to babashka. Anyone else seen that?

borkdude16:01:58

yes. you can just add a deps.edn to your script dir and develop using regular clojure

borkdude16:01:31

Personally I never do that to be honest, since bb scripts run fast enough to just run them from scratch on every change.

pez16:01:04

I repl my way forward as with any clojure stuff. But was thinking I can leverage Calva better using a deps.edn setup.

borkdude16:01:49

Yeah, totally possible

borkdude16:01:19

just look at the babashka project project.clj. the deps in deps.edn aren't used all by default, they are just there for testing

borkdude16:01:30

or just add the ones you are actually using

borkdude17:01:11

That's a really nice vid btw, I recommend it to everyone new to bb