mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Merge pull request #997
1c7d3b0
cmake: define ARM var for all ARM arch variants (redfish)6fe543d
cmake: ARM: exclude libunwind in static build (redfish)397b720
make: remove NO_AES from arm targets (redfish)57ca3f3
make: make the ARM release targets statically linked (redfish)43c07a1
readme: editted install/build instructions for clarity (redfish)a0d4058
Revert "makefile: remove unnecessary ARM-specific targets" (redfish)c2bc34b
Revert "Interpret x86_64 as x86-64 for architecture" (redfish)c54b9a1
cmake: don't set ARCH from CMAKE_SYSTEM_PROCESSOR (redfish)
This commit is contained in:
commit
53a0997a26
3 changed files with 135 additions and 120 deletions
8
Makefile
8
Makefile
|
@ -58,6 +58,14 @@ release-all:
|
|||
mkdir -p build/release
|
||||
cd build/release && cmake -D BUILD_TESTS=ON -D CMAKE_BUILD_TYPE=release ../.. && $(MAKE)
|
||||
|
||||
release-static-arm6:
|
||||
mkdir -p build/release
|
||||
cd build/release && cmake -D BUILD_TESTS=OFF -D ARCH="armv6zk" -D STATIC=ON -D BUILD_64=OFF -D CMAKE_BUILD_TYPE=release ../.. && $(MAKE)
|
||||
|
||||
release-static-arm7:
|
||||
mkdir -p build/release
|
||||
cd build/release && cmake -D BUILD_TESTS=OFF -D ARCH="armv7-a" -D STATIC=ON -D BUILD_64=OFF -D CMAKE_BUILD_TYPE=release ../.. && $(MAKE)
|
||||
|
||||
release-static: release-static-64
|
||||
|
||||
release-static-64:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue