From 064e3eafcc5cba9c3245d3e2cb37af4ba1578d95 Mon Sep 17 00:00:00 2001 From: cymulatereouven <150811368+cymulatereouven@users.noreply.github.com> Date: Tue, 10 Sep 2024 13:56:06 +0300 Subject: [PATCH] Update README.md --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 5e3a15f9..24ddc27f 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,13 @@ OpenSSL has been upgraded in High Sierra and homebrew does not overwrite default export CPPFLAGS=-I/usr/local/opt/openssl/include export LDFLAGS=-L/usr/local/opt/openssl/lib ``` +Mac M1 +If you are using a Mac with an M1 chip, use the following paths instead: + +```sh +export CPPFLAGS=-I/opt/homebrew/opt/openssl@3/include +export LDFLAGS=-L/opt/homebrew/opt/openssl@3/lib +``` Then you can run `npm install` on your application to get it to build correctly.