-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
macOS 10.9 and newer require libstdc++
to be installed
#12
Comments
I was attempting to run ARRCON on one of the M1 Macs and hit an error with missing gcc libraries, even after running The issue came down to the fact that because the ARRCON binary is x86, I needed to install the x86 version of homebrew and use that version of homebrew to run You might consider either adding a note for ARM-Mac users noting that they need to use the x86 version of Homebrew when running |
on macos 14.2.1 M3 pro i get these errors: after running
|
Just an FYI that hopefully helps anyone for building on Apple Silicon Macs. I am on macOS Sonoma 14.2.1 on a MacBook Air 15-inch, M2, 2023. I successfully built ARRCON by performing the following:
I also have the latest XCode and XCode command line tools installed. |
Resolved in v4.0.0-pr2 by migrating to |
Summary
If you're using macOS 10.9 or later, you must install
gcc
via HomeBrew or some other package manager.brew install gcc
Explanation
Apple no longer includes GCC's
libstdc++
in new releases of macOS as of version 10.9, when it was replaced by Apple clang'slibc++
.This is a problem because ARRCON is dependent on the
libstdc++
standard library, and as such it is not compatible withlibc++
.In order to install
libstdc++
, thegcc
package (GNU Compiler Collection) must be installed by users via HomeBrew or some other package manager.The text was updated successfully, but these errors were encountered: