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
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.
The text was updated successfully, but these errors were encountered:
https://github.com/CudoVentures/cudos-node/blob/ed5a355b592ea93ce0cd35f2ef778a8cf18343a7/Makefile#L17
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.
The text was updated successfully, but these errors were encountered: