From b5ffc0dc4ed6c752d8e4c0f9abeae7c7c1a928aa Mon Sep 17 00:00:00 2001 From: Tommy Vercetti <7903172+tommyvct@users.noreply.github.com> Date: Mon, 21 Dec 2020 14:42:50 -0600 Subject: [PATCH 1/4] added MSYSTEM=ARM64 case in /etc/profile --- etc/profile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/etc/profile b/etc/profile index 33eb321c717..51cdfbf5d82 100644 --- a/etc/profile +++ b/etc/profile @@ -61,6 +61,13 @@ MINGW64) ACLOCAL_PATH="${MINGW_MOUNT_POINT}/share/aclocal:/usr/share/aclocal" MANPATH="${MINGW_MOUNT_POINT}/local/man:${MINGW_MOUNT_POINT}/share/man:${MANPATH}" ;; +ARM64) + MINGW_MOUNT_POINT="${MINGW_PREFIX}" + PATH="${MINGW_MOUNT_POINT}/bin:${MSYS2_PATH}${ORIGINAL_PATH:+:${ORIGINAL_PATH}}" + PKG_CONFIG_PATH="${MINGW_MOUNT_POINT}/lib/pkgconfig:${MINGW_MOUNT_POINT}/share/pkgconfig" + ACLOCAL_PATH="${MINGW_MOUNT_POINT}/share/aclocal:/usr/share/aclocal" + MANPATH="${MINGW_MOUNT_POINT}/local/man:${MINGW_MOUNT_POINT}/share/man:${MANPATH}" + ;; *) PATH="${MSYS2_PATH}:/opt/bin${ORIGINAL_PATH:+:${ORIGINAL_PATH}}" PKG_CONFIG_PATH="/usr/lib/pkgconfig:/usr/share/pkgconfig:/lib/pkgconfig" From be64d64afa13cac4a7e9216ac13c30fb624b3f13 Mon Sep 17 00:00:00 2001 From: Tommy Vercetti <7903172+tommyvct@users.noreply.github.com> Date: Mon, 21 Dec 2020 15:49:40 -0600 Subject: [PATCH 2/4] updated mingw32 path --- etc/profile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/profile b/etc/profile index 51cdfbf5d82..fbe222c2327 100644 --- a/etc/profile +++ b/etc/profile @@ -63,7 +63,7 @@ MINGW64) ;; ARM64) MINGW_MOUNT_POINT="${MINGW_PREFIX}" - PATH="${MINGW_MOUNT_POINT}/bin:${MSYS2_PATH}${ORIGINAL_PATH:+:${ORIGINAL_PATH}}" + PATH="${MINGW_MOUNT_POINT}/bin:/mingw32/bin:${MSYS2_PATH}${ORIGINAL_PATH:+:${ORIGINAL_PATH}}" PKG_CONFIG_PATH="${MINGW_MOUNT_POINT}/lib/pkgconfig:${MINGW_MOUNT_POINT}/share/pkgconfig" ACLOCAL_PATH="${MINGW_MOUNT_POINT}/share/aclocal:/usr/share/aclocal" MANPATH="${MINGW_MOUNT_POINT}/local/man:${MINGW_MOUNT_POINT}/share/man:${MANPATH}" From 0941691cb98d4032c641bd96c8a2a7c3d1664ada Mon Sep 17 00:00:00 2001 From: Tommy Vercetti <7903172+tommyvct@users.noreply.github.com> Date: Tue, 29 Dec 2020 15:30:48 -0600 Subject: [PATCH 3/4] changed MINGW_MOUNT_POINT to /arm64 --- etc/profile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/profile b/etc/profile index fbe222c2327..5941dd6bcfc 100644 --- a/etc/profile +++ b/etc/profile @@ -62,7 +62,7 @@ MINGW64) MANPATH="${MINGW_MOUNT_POINT}/local/man:${MINGW_MOUNT_POINT}/share/man:${MANPATH}" ;; ARM64) - MINGW_MOUNT_POINT="${MINGW_PREFIX}" + MINGW_MOUNT_POINT="/arm64" PATH="${MINGW_MOUNT_POINT}/bin:/mingw32/bin:${MSYS2_PATH}${ORIGINAL_PATH:+:${ORIGINAL_PATH}}" PKG_CONFIG_PATH="${MINGW_MOUNT_POINT}/lib/pkgconfig:${MINGW_MOUNT_POINT}/share/pkgconfig" ACLOCAL_PATH="${MINGW_MOUNT_POINT}/share/aclocal:/usr/share/aclocal" From 135af65d5d2969befb4bb0074f5437601eb099a5 Mon Sep 17 00:00:00 2001 From: Tommy Vercetti <7903172+tommyvct@users.noreply.github.com> Date: Tue, 29 Dec 2020 15:33:17 -0600 Subject: [PATCH 4/4] added MSYSTEM=ARM64 case in /etc/profile --- etc/profile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/profile b/etc/profile index 5941dd6bcfc..94d4aad7345 100644 --- a/etc/profile +++ b/etc/profile @@ -62,7 +62,7 @@ MINGW64) MANPATH="${MINGW_MOUNT_POINT}/local/man:${MINGW_MOUNT_POINT}/share/man:${MANPATH}" ;; ARM64) - MINGW_MOUNT_POINT="/arm64" + MINGW_MOUNT_POINT="/arm64" PATH="${MINGW_MOUNT_POINT}/bin:/mingw32/bin:${MSYS2_PATH}${ORIGINAL_PATH:+:${ORIGINAL_PATH}}" PKG_CONFIG_PATH="${MINGW_MOUNT_POINT}/lib/pkgconfig:${MINGW_MOUNT_POINT}/share/pkgconfig" ACLOCAL_PATH="${MINGW_MOUNT_POINT}/share/aclocal:/usr/share/aclocal"