From fd1ed89459f8f6dee0f9ea481eb27f10ae1acaaf Mon Sep 17 00:00:00 2001 From: evtrouble <105802875+evtrouble@users.noreply.github.com> Date: Wed, 23 Jul 2025 09:59:43 +0800 Subject: [PATCH] Update build.sh Fix libevent, jsoncpp compilation on mac shows that cmake version is too high. --- build.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.sh b/build.sh index 76b52cbb5..7a719b740 100755 --- a/build.sh +++ b/build.sh @@ -75,6 +75,9 @@ function prepare_build_dir function do_init { git submodule update --init || return + git -C "deps/3rd/libevent" checkout 112421c8fa4840acd73502f2ab6a674fc025de37 || return + # git submodule update --remote "deps/3rd/libevent" || return + git -C "deps/3rd/jsoncpp" checkout 1.9.6 || return current_dir=$PWD MAKE_COMMAND="make --silent"