I'm about to connect a M17 reflector to ASL3

But have a small NON-ASL3 glitch…

Anyone get the “new” M17 Dashboard (GitHub - kc1awv/gomrefdash: mrefd Dashboard in Go) to compile on ASL3 image (Linux Allstar 6.6.62+rpt-rpi-2712 #1 SMP PREEMPT Debian 1:6.6.62-1+rpt1 (2024-11-25) aarch64 GNU/Linux) ??

Thanks

I don’t use it but since it’s a trivial build I ran it. Worked fine to build for me. What’s your error?

Error compiling-> gcc: error: unrecognized command-line option ‘-m64’

Dunno. I’d ask on their GitHub issues page.

That was a bust… He didn’t want to find the reason…

It’s likely something you’ve installed/changed on the system. In general, the gcc option -m is the machine type. So -m64 means it thinks it should be compiling for x86_64. For a Pi running Debian 12, it should be selecting -march=armv8-a or something like that. But this appears to be something with your system.

I did this:

root@Allstar:/opt# apt list --installed | grep gcc

WARNING: apt does not have a stable CLI interface. Use with caution in scripts.

gcc-12-base/stable,now 12.2.0-14 arm64 [installed]
gcc-12/stable,now 12.2.0-14 arm64 [installed,automatic]
gcc/stable,now 4:12.2.0-3 arm64 [installed,automatic]
libgcc-12-dev/stable,now 12.2.0-14 arm64 [installed,automatic]
libgcc-s1/stable,now 12.2.0-14 arm64 [installed]

If my understanding is correct, even though it seem to be correct, if I uninstall these libraries, and then reinstalled (or just force a reinstall) it should over-write what is wrong OR should I be looking elsewhere.

That software is written in go. What version of golang do you have installed?

go version go1.23.4 linux/amd64

Well that won’t work on am arm system

That would do it… I’ll look in the morn.

THanks

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.