Skip to content

Commit

Permalink
RONDB-756: Added include paths for Google Protobuf on Mac
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaelronstrom committed Nov 4, 2024
1 parent 8a489ad commit 5135e36
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pink/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@ if [[ ! -d $SLASH_PATH ]]; then
git clone https://github.com/Qihoo360/slash.git $SLASH_PATH
fi
cd $SLASH_PATH/slash && make

UNAME_S=`uname -s`
if test "x$UNAME_S" = "xDarwin" ; then
export C_INCLUDE_PATH=/opt/homebrew_include
export CPLUS_INCLUDE_PATH=/opt/homebrew/include
fi
# Compile pink
cd $PINK_PATH
make SLASH_PATH=$SLASH_PATH
Expand Down

0 comments on commit 5135e36

Please sign in to comment.