This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-crypto.git


The following commit(s) were added to refs/heads/master by this push:
     new f239f16d Ensure all known_os_archs have targets
f239f16d is described below

commit f239f16d7f8033ad810aac2873587d9748675ff2
Author: Sebb <s...@apache.org>
AuthorDate: Wed Nov 1 12:01:56 2023 +0000

    Ensure all known_os_archs have targets
---
 Makefile | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/Makefile b/Makefile
index 9ac28579..32895663 100644
--- a/Makefile
+++ b/Makefile
@@ -101,6 +101,9 @@ mac64:
 macArm64:
        $(MAKE) native OS_NAME=Mac OS_ARCH=arm64
 
+mac-aarch64:
+       $(MAKE) native OS_NAME=Mac OS_ARCH=aarch64
+
 linux32:
        $(MAKE) native OS_NAME=Linux OS_ARCH=x86
 
@@ -121,3 +124,22 @@ linux-armhf:
 # for cross-compilation on Ubuntu, install the g++-aarch64-linux-gnu
 linux-aarch64:
        $(MAKE) native CROSS_PREFIX=aarch64-linux-gnu- OS_NAME=Linux 
OS_ARCH=aarch64
+
+linux-ppc: # TODO: Untested; may need additional CROSS_PREFIX define
+       $(MAKE) native OS_NAME=Linux OS_ARCH=ppc
+
+linux-ppc64: # TODO: Untested; may need additional CROSS_PREFIX define
+       $(MAKE) native OS_NAME=Linux OS_ARCH=ppc64
+
+sunos32: # TODO: Untested; may need additional CROSS_PREFIX define
+       $(MAKE) native OS_NAME=SunOS OS_ARCH=x86
+
+sunos64: # TODO: Untested; may need additional CROSS_PREFIX define
+       $(MAKE) native OS_NAME=SunOS OS_ARCH=x86_64
+
+sunos-sparc: # TODO: Untested; may need additional CROSS_PREFIX define
+       $(MAKE) native OS_NAME=SunOS OS_ARCH=sparc
+
+aix-ppc64: # TODO: Untested; may need additional CROSS_PREFIX define
+       $(MAKE) native OS_NAME=AIX OS_ARCH=ppc64
+

Reply via email to