diff --git a/Makefile b/Makefile index fc79958f6..777769f13 100644 --- a/Makefile +++ b/Makefile @@ -62,11 +62,11 @@ coverage: mkdir -p build/debug cd build/debug && cmake -D BUILD_TESTS=ON -D CMAKE_BUILD_TYPE=Debug -D COVERAGE=ON ../.. && $(MAKE) && $(MAKE) test -release-static-arm6: +release-static-armv6: 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: +release-static-armv7: 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) diff --git a/README.md b/README.md index 2245e6920..abba6385a 100644 --- a/README.md +++ b/README.md @@ -242,9 +242,9 @@ By default, in either dynamically or statically linked builds, binaries target t * ```make release-static-64``` builds binaries on Linux on x86_64 portable across POSIX systems on x86_64 processors * ```make release-static-32``` builds binaries on Linux on x86_64 or i686 portable across POSIX systems on i686 processors -* ```make release-static-arm8``` builds binaries on Linux on armv8 portable across POSIX systems on armv8 processors -* ```make release-static-arm7``` builds binaries on Linux on armv7 portable across POSIX systems on armv7 processors -* ```make release-static-arm6``` builds binaries on Linux on armv7 or armv6 portable across POSIX systems on armv6 processors, such as the Raspberry Pi +* ```make release-static-armv8``` builds binaries on Linux portable across POSIX systems on armv8 processors +* ```make release-static-armv7``` builds binaries on Linux portable across POSIX systems on armv7 processors +* ```make release-static-armv6``` builds binaries on Linux portable across POSIX systems on armv6 processors * ```make release-static-win64``` builds binaries on 64-bit Windows portable across 64-bit Windows systems * ```make release-static-win32``` builds binaries on 64-bit or 32-bit Windows portable across 32-bit Windows systems