trezor / trezord-go

:smiling_imp: Trezor Communication Daemon (written in Go)
GNU Lesser General Public License v3.0
241 stars 146 forks source link

`error: 'mac/hid.c' file not found` on m1 macOS #286

Closed chenrui333 closed 1 year ago

chenrui333 commented 1 year ago

Got some build error when trying to build trezor-bridge 2.0.32

usb/lowlevel/hidapi/hid.go:25:11: fatal error: 'mac/hid.c' file not found
        #include "mac/hid.c"
                       ^~~~~~~~~~~
1 error generated.

What would be the way to solve the issue? Thanks!

prusnak commented 1 year ago

You are not using git clone --recursive to fetch submodules.

Readme fixed in 8f35971d3c36ea8b91ff54810397526ef8e741c5

chenrui333 commented 1 year ago

Oh, I see, thanks!