From 545ea19c274cf1efccb9fe5379aa0af19ffc5923 Mon Sep 17 00:00:00 2001
From: who-biz <37732338+who-biz@users.noreply.github.com>
Date: Tue, 11 Apr 2023 18:24:18 -0400
Subject: [PATCH] Remove note about mac cross-compile, it works now
---
README.md | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/README.md b/README.md
index 25a3515..dabb1d2 100644
--- a/README.md
+++ b/README.md
@@ -87,9 +87,8 @@ To compile for Linux (distro-agnostic): `make release-cross-linux-x86_64`
To compile for Windows(mingw64): `make release-cross-winx64`
To compile for Mac(x86_64): `make release-cross-mac-x86_64`
-*Please note: the mac cross-compilation does not function properly. Additional steps may be required. As a result, our binaries are compiled for macOS on a macOS host.*
-The `Makefile` entries run by the above commands will build dependencies for `x86_64-gnu-linux` and `x86_64-w64-mingw32` hosts, respectively. If you would like to compile for a different type of host platform, `cd` into the `contrib/depends` directory, and build with `make HOST=xxx-yyy-zzz` where xxx-yyy-zzz is a standard host triplet.
+The `Makefile` entries run by the above commands will build dependencies for `x86_64-gnu-linux` and `x86_64-w64-mingw32`, and `x86_64-apple-darwin11` hosts, respectively. If you would like to compile for a different type of host platform, `cd` into the `contrib/depends` directory, and build with `make HOST=xxx-yyy-zzz` where xxx-yyy-zzz is a standard host triplet.
*Note that we do not officially support builds for 32-bit architecture, arm architecture, or the freebsd linux distribution currently. However, there are options within the [Makefile](Makefile) for these configurations. These entries may require significant modifications to source files, in order to work properly.*