pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/mk



Module Name:    pkgsrc
Committed By:   mrg
Date:           Thu Mar  3 03:32:28 UTC 2022

Modified Files:
        pkgsrc/mk: ocaml.mk

Log Message:
default OCAML_USE_OPT_COMPILER to YES on arm64eb.


To generate a diff of this commit:
cvs rdiff -u -r1.31 -r1.32 pkgsrc/mk/ocaml.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/mk/ocaml.mk
diff -u pkgsrc/mk/ocaml.mk:1.31 pkgsrc/mk/ocaml.mk:1.32
--- pkgsrc/mk/ocaml.mk:1.31     Mon Feb 14 11:37:48 2022
+++ pkgsrc/mk/ocaml.mk  Thu Mar  3 03:32:28 2022
@@ -1,4 +1,4 @@
-# $NetBSD: ocaml.mk,v 1.31 2022/02/14 11:37:48 wiz Exp $
+# $NetBSD: ocaml.mk,v 1.32 2022/03/03 03:32:28 mrg Exp $
 #
 # This Makefile fragment handles the common variables used by OCaml packages.
 #
@@ -112,7 +112,7 @@ OASIS_BUILD_ARGS?=  # empty
 # Default value of OCAML_USE_OPT_COMPILER
 .if (${MACHINE_ARCH} == "i386") || (${MACHINE_ARCH} == "powerpc") || \
     !empty(MACHINE_ARCH:M*arm*) || (${MACHINE_ARCH} == "aarch64") || \
-    (${MACHINE_ARCH} == "x86_64")
+    (${MACHINE_ARCH} == "aarch64eb") || (${MACHINE_ARCH} == "x86_64")
 OCAML_USE_OPT_COMPILER?=       yes
 .else
 OCAML_USE_OPT_COMPILER?=       no



Home | Main Index | Thread Index | Old Index