mirror of
https://git.wownero.com/wownero/wownero.git
synced 2025-01-10 14:18:52 +00:00
6a78140863
The configure script in hidapi and libsodium tried to find clang in /usr/bin, even though the correct prefix was passed in. This sets the correct CC flag. This was previously undetected, because clang and the sdk where installed in the global environment. This also fixes a subsequent error, where IOKIT and CoreFoundation are not found, again for the reason stated above.
26 lines
599 B
Makefile
26 lines
599 B
Makefile
packages:=boost openssl libevent zeromq cppzmq zlib expat ldns cppzmq readline libiconv qt
|
|
native_packages := native_ccache
|
|
|
|
wallet_packages=bdb
|
|
|
|
darwin_native_packages = native_biplist native_ds_store native_mac_alias
|
|
darwin_packages = sodium-darwin hidapi-darwin
|
|
|
|
linux_packages = eudev libusb hidapi-linux
|
|
|
|
ifeq ($(host_os),linux)
|
|
packages += unwind
|
|
packages += sodium
|
|
endif
|
|
ifeq ($(host_os),mingw32)
|
|
packages += icu4c
|
|
packages += sodium
|
|
packages += hidapi
|
|
endif
|
|
|
|
ifneq ($(build_os),darwin)
|
|
darwin_native_packages += native_cctools native_cdrkit native_libdmg-hfsplus
|
|
packages += readline
|
|
endif
|
|
|