From d8e0dd4c7de0a80127260870562d016eb29640fe Mon Sep 17 00:00:00 2001 From: Bruce Krysiak Date: Wed, 30 Nov 2022 17:46:27 -0800 Subject: [PATCH 1/4] Fixing intermittent OSX test failure issue due to low default filehandle limit --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 912da8035..71ffca151 100644 --- a/README.md +++ b/README.md @@ -89,6 +89,7 @@ sudo xcode-select -s /Applications/Xcode_12.5.1.app/Contents/Developer MacOS: ```sh + echo 'ulimit -n 4096' >> ~/.bash_profile echo 'export PATH="/opt/homebrew/opt/openssl@3/bin:$PATH"' >> ~/.bash_profile export LDFLAGS="-L/opt/homebrew/opt/openssl@3/lib" export CPPFLAGS="-I/opt/homebrew/opt/openssl@3/include" From 2463abd599af14ca5b707eaa98b22c05038d97c4 Mon Sep 17 00:00:00 2001 From: Bruce Krysiak Date: Wed, 30 Nov 2022 17:51:52 -0800 Subject: [PATCH 2/4] Make sure ~/.bash_profile changes are reloaded properly --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 71ffca151..92fc286fb 100644 --- a/README.md +++ b/README.md @@ -91,6 +91,7 @@ sudo xcode-select -s /Applications/Xcode_12.5.1.app/Contents/Developer ```sh echo 'ulimit -n 4096' >> ~/.bash_profile echo 'export PATH="/opt/homebrew/opt/openssl@3/bin:$PATH"' >> ~/.bash_profile + source ~/.bash_profile export LDFLAGS="-L/opt/homebrew/opt/openssl@3/lib" export CPPFLAGS="-I/opt/homebrew/opt/openssl@3/include" export PKG_CONFIG_PATH="/opt/homebrew/opt/openssl@3/lib/pkgconfig" From 9368704515741d61d073c8695de97b4e420a87df Mon Sep 17 00:00:00 2001 From: Bruce Krysiak Date: Wed, 30 Nov 2022 18:08:16 -0800 Subject: [PATCH 3/4] Additional explanation for the ulimit line for OSX in the README Co-authored-by: cxloe <77425619+cxloe@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 92fc286fb..931417f6f 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,7 @@ sudo xcode-select -s /Applications/Xcode_12.5.1.app/Contents/Developer CPPFLAGS="-I/usr/local/opt/openssl@3/include" PKG_CONFIG_PATH="/usr/local/opt/openssl@3/lib/pkgconfig" ``` - +The ```ulimit``` command fixes an issue related to shell resource usage. MacOS: ```sh echo 'ulimit -n 4096' >> ~/.bash_profile From 2b8585265f5a53389c39133fa6c1b969404c7b5c Mon Sep 17 00:00:00 2001 From: Bruce Krysiak Date: Wed, 30 Nov 2022 18:11:01 -0800 Subject: [PATCH 4/4] Fixing spacing issue --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 931417f6f..34ef18f55 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,9 @@ sudo xcode-select -s /Applications/Xcode_12.5.1.app/Contents/Developer CPPFLAGS="-I/usr/local/opt/openssl@3/include" PKG_CONFIG_PATH="/usr/local/opt/openssl@3/lib/pkgconfig" ``` -The ```ulimit``` command fixes an issue related to shell resource usage. + + The `ulimit` command fixes an issue related to shell resource usage. + MacOS: ```sh echo 'ulimit -n 4096' >> ~/.bash_profile