Skip to content

Commit

Permalink
Ensure all known_os_archs have targets
Browse files Browse the repository at this point in the history
  • Loading branch information
sebbASF committed Nov 1, 2023
1 parent 229d839 commit f239f16
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

0 comments on commit f239f16

Please sign in to comment.