Cristian Maglie
Cristian Maglie
May I ask why are you running `arduino-cli` as **service** user, what's your usecase? > Unable to get Documents Folder: The system cannot find the specified file. time="2022-04-28T21:06:57+02:00" level=error msg="Unable...
at the moment we produce the arduino-builder executable with: ``` GOOS=linux GOARCH=arm64 go build -o arduino-builder ``` maybe we should add the `GO386=387` flag to support a wider audience? Let...
aehm... I mean: ``` go build -o arduino-builder $MAIN_GO cp arduino-builder distrib/linux64 GOOS=linux GOARCH=386 go build -o arduino-builder $MAIN_GO cp arduino-builder distrib/linux32 ``` so neither x64 nor x86 have any...
@HennieP12 I've rebuild `arduino-builder` with the latest go1.14.3 and different set of flags, may you try them and report if anyone of them works for your system? 1. `GOARCH=amd64`: [arduino-builder-x86_64.zip](https://github.com/arduino/arduino-cli/files/4644127/arduino-builder-x86_64.zip)...
Is this happening when there is only the directory without the executable?
Is this comment relevant to you? https://github.com/arduino/arduino-cli/issues/1775#issuecomment-1168168582 > I found the root cause, the .arduino15/packages/builtin/tools/mdns-discovery/1.0.5/mdns-discovery needs /lib/ld-linux.so.3, but in my target system, the name is /lib/ld-linux-armhf.so.3. So you need to...
> I can see the full expected output in the arduino-cli daemon --debug output (note that it is in the second segment of the stream): Actually it is **not** the...
Hi @ElXreno, sorry for the long delay in replying here. The go-lang package system allows a project to provide the `go.mod` file with all the dependencies versions required to build...
related to https://github.com/arduino/arduino-builder/pull/301
Hi @PaulStoffregen I've actually implemented it here: https://github.com/arduino/arduino-cli/pull/1674 It's rebased on the current master, so it's up-to-date, but I've just barely tested, so weird things may happen... If you want...