These are the channel logs matching your query arduino-cli
2021-12-07 | [15:38:43] <permcu> Thanks roptat. I think I will have to use a custom origin-method. wget was just an example. I am actually using arduino-cli to setup an arduino environment with guix. I don't want to compile it from source, because it's huge with all the custom compilers and so forth. But I also don't want to use a docker-image or similar. Inside the custom origin-method method download works. With computed-file it does not. I can still not figure out |
2024-04-20 | [19:04:56] <Kabouik> What do we have in Guix for Arduino/ESP32 coding and compiling? I see we have an emacs-platformio-mode, but no arduino-cli nor platformio-cli, which I think would be required. |
2024-04-20 | [20:36:30] <Kabouik> Edit: "Packages for Emacs and Arduino and Platformio" -> I meant emacs-platformio and emacs-arduino packages, but none for platformio-cli and arduino-cli. |
2024-04-20 | [20:38:18] <wakyct78> I've used arduino-cli on another OS but not sure if perhaps there's a lower-level way to do the same thing that might be easier to package? dunno |
2024-04-20 | [20:39:35] <Kabouik> My knowledge is limited on that front, but everything I read about using other editors as replacements to Arduino IDE mentioned at least having arduino-cli/platformio-cli installed for the other editor and extension to use them for compilation. |
2024-04-20 | [20:39:50] <wakyct78> yeah, I used arduino-cli from Emacs |
2024-04-20 | [20:42:40] <Kabouik> From what I understood (but never tried), ESP32 boards can be added to Arduino IDE's board manager, and then dealt with just like the Arduino boards. A colleague also uses Visual Studio, but I think that's with an extension that bundles arduino-cli too, or with Arduino IDE installed on the system so that the cli is available to other editors too. |
2024-04-20 | [20:47:36] <wakyct78> I think you can install just arduino-cli w/o the IDE? Hard to remember from the mess of my old install ;) |
2024-04-20 | [20:50:17] <Kabouik> I guess if they ship arduino-cli pre-compiled I could try that, but then finding how to configure Emacs for it may not be too straightforward. Worth a shot anyway indeed. |
2024-04-23 | [15:44:43] <Kabouik> I am trying to compile an Arduino sketch using arduino-cli (installable with a curl-sh method, not secure but hey). However the compilation complains because I don't have stubs-32.h in ~/.guix-profile/include/gnu, is there a way to work around this with a guix shell maybe? |
2024-05-11 | [18:35:59] <JetpackJackson> Hi, i'm new to Guix and IRC, and I'm trying to write a scheme to package the arduino-cli but i'm running into some issues. is there a way for me to send my arduino.scm file? |
2024-05-11 | [18:39:34] <wakyct> https://logs.guix.gnu.org/guix/search?query=arduino-cli |
2024-05-11 | [18:39:35] <peanuts> "Search guix IRC channel logs" https://logs.guix.gnu.org/guix/search?query=arduino-cli |
2024-05-11 | [19:31:24] <JetpackJackson> wrt earlier i got the arduino.cc link from the page on how to install the cli https://arduino.github.io/arduino-cli/0.35/installation/#download |
2024-05-11 | [19:31:26] <peanuts> "Installation - Arduino CLI" https://arduino.github.io/arduino-cli/0.35/installation/#download |
2024-05-12 | [03:21:36] <JetpackJackson> ok i worked on my arduino-cli scheme file some more: https://paste.debian.net/1316660/ but i get https://paste.debian.net/1316661/ as my result when i try to build |
2024-05-12 | [15:53:03] <JetpackJackson> im also still stuck on the arduino-cli package but i should focus on one thing at a time lol |
2024-06-26 | [23:56:22] <JetpackJackson> has anyone been able to package any go packages? trying to package hydroxide and arduino-cli and struggling lol |
2024-06-28 | [18:04:20] <JetpackJackson> im getting a strange error trying to package arduino-cli, "error: go-google-golang-org-grpc@1.64.0: dependency cycle detected: |
2024-06-28 | [18:04:22] <JetpackJackson> go-google-golang-org-grpc@1.64.0 -> go-github-com-envoyproxy-go-control-plane@0.12.0 -> go-google-golang-org-grpc@1.64.0 -> go-github-com-arduino-arduino-cli@1.0.1" |
2024-06-29 | [02:30:48] <JetpackJackson> strange, im getting "(exception misc-error (value #f) (value "no code for module ~S") (value ((packages arduino-cli))) (value #f))" when i sudo guix pull my updated channels file with my packages in it |
2024-06-29 | [02:35:17] <freakingpenguin> JetpackJackson: directory is added to the load-path root, not counting that directory. So you're trying to define a (pita-packs packages arduino-cli) in a GUILE_LOAD_PATH/packages/arduino-cli.scm file |
2024-08-19 | [16:15:02] <Kabouik> Anyone here compiling code for Arduino from Guix? I installed arduino-cli using a Debian distrobox and exported the executable to Guix, then installed all required libraries for my project, then ran a guix shell gcc because it is required, but then I am getting these errors which I really have no idea how to debug: https://0x0.st/XJBL.txt (the same Arduino code works fine for a collaborator using Windows and VSCode, in fact he wrote the code, so maybe |
2024-08-19 | [16:53:54] <Kabouik> Rutherther: you're right, I should try to do everything from the container. I just was confused regarding glibcxx, I'm not sure how I can find it for the mcu target. The board being installed in arduino-cli, I would expect this should come with it. |