Merge pull request #1509 from majestrate/unbreak-build-2021-01-12

unbreak the build
pull/1511/head
Jason Rhinelander 3 years ago committed by GitHub
commit d6231521d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -172,6 +172,7 @@ local mac_builder(name, build_type='Release', werror=true, cmake_extra='', extra
// If you don't do this then the C compiler doesn't have an include path containing
// basic system headers. WTF apple:
'export SDKROOT="$(xcrun --sdk macosx --show-sdk-path)"',
'ulimit -n 1024', // because macos sets ulimit to 256 for some reason yeah idk
'mkdir build',
'cd build',
'cmake .. -G Ninja -DCMAKE_CXX_FLAGS=-fcolor-diagnostics -DCMAKE_BUILD_TYPE='+build_type+' ' +

@ -50,7 +50,6 @@ endif()
add_library(lokinet-platform
# for networking
ev/ev.cpp
ev/pipe.cpp
ev/ev_libuv.cpp
net/ip.cpp
net/ip_address.cpp

@ -304,7 +304,7 @@ namespace libuv
log.logStream->Tick(loop->time_now());
}
constexpr size_t TimeQueueSize = 20;
constexpr size_t TimerQueueSize = 20;
Loop::Loop(size_t queue_size)
: llarp::EventLoop{}

Loading…
Cancel
Save