mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
0806a23a6e
Depends cross compiles project dependencies for linux, mac and windows and multiple architectures. Depends is original work by Cory Fields and used in bitcoin and a wide range of bitcoin related projects.
31 lines
739 B
Makefile
31 lines
739 B
Makefile
linux_CFLAGS=-pipe
|
|
linux_CXXFLAGS=$(linux_CFLAGS)
|
|
|
|
linux_release_CFLAGS=-O2
|
|
linux_release_CXXFLAGS=$(linux_release_CFLAGS)
|
|
|
|
linux_debug_CFLAGS=-O1
|
|
linux_debug_CXXFLAGS=$(linux_debug_CFLAGS)
|
|
|
|
linux_debug_CPPFLAGS=-D_GLIBCXX_DEBUG -D_GLIBCXX_DEBUG_PEDANTIC
|
|
|
|
ifeq (86,$(findstring 86,$(build_arch)))
|
|
i686_linux_CC=gcc -m32
|
|
i686_linux_CXX=g++ -m32
|
|
i686_linux_AR=ar
|
|
i686_linux_RANLIB=ranlib
|
|
i686_linux_NM=nm
|
|
i686_linux_STRIP=strip
|
|
|
|
x86_64_linux_CC=gcc -m64
|
|
x86_64_linux_CXX=g++ -m64
|
|
x86_64_linux_AR=ar
|
|
x86_64_linux_RANLIB=ranlib
|
|
x86_64_linux_NM=nm
|
|
x86_64_linux_STRIP=strip
|
|
else
|
|
i686_linux_CC=$(default_host_CC) -m32
|
|
i686_linux_CXX=$(default_host_CXX) -m32
|
|
x86_64_linux_CC=$(default_host_CC) -m64
|
|
x86_64_linux_CXX=$(default_host_CXX) -m64
|
|
endif
|