You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 27, 2026. It is now read-only.
It seems a single character in the Makefile is causing issues when running make on Mac for some users - untested.
On line 17:
Replace: install: export CGO_LDFLAGS="-Wl,-rpath=$$ORIGIN/../"
With: install: export CGO_LDFLAGS="-Wl,-rpath,$$ORIGIN/../"
(Just a tiny change from an = to a , after -rpath)
If someone could test this on their Mac (ARM) and see if there is a fix.
This is useful for devs who want to interact with the node from their Mac devices.
https://github.com/CudoVentures/cudos-node/blob/ed5a355b592ea93ce0cd35f2ef778a8cf18343a7/Makefile#L17
It seems a single character in the Makefile is causing issues when running
makeon Mac for some users - untested.On line 17:
Replace:
install: export CGO_LDFLAGS="-Wl,-rpath=$$ORIGIN/../"With:
install: export CGO_LDFLAGS="-Wl,-rpath,$$ORIGIN/../"(Just a tiny change from an
=to a,after-rpath)If someone could test this on their Mac (ARM) and see if there is a fix.
This is useful for devs who want to interact with the node from their Mac devices.