From 2836976d6d4643948d0b18e37d1c27d16c3c0716 Mon Sep 17 00:00:00 2001 From: Eugene Brodsky Date: Tue, 13 Dec 2022 02:26:28 -0500 Subject: [PATCH] (install) fix segfault on macos when using homebrew --- installer/install.sh.in | 6 ------ 1 file changed, 6 deletions(-) diff --git a/installer/install.sh.in b/installer/install.sh.in index c128d2b35b..6d78265e35 100644 --- a/installer/install.sh.in +++ b/installer/install.sh.in @@ -110,12 +110,6 @@ if [ -z "$PYTHON" ]; then exit -1 fi -if [ "$OS_NAME" == "osx" ]; then - xcode_path=$(xcode-select --print-path) - _err_exit $? "xcode_path command not found" - export CPPFLAGS="-I$xcode_path/Library/Frameworks/Python3.framework/Versions/Current/Headers" - echo "Will compile wheels with CPPFLAGS=$CPPFLAGS" -fi ROOTDIR="" while [ "$ROOTDIR" == "" ]