1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00

add ulimit -n 1024 to mac ci stuff because lol apple

This commit is contained in:
Jeff Becker 2021-01-12 09:46:44 -05:00
parent 82b3ec19e8
commit f8c0195cfc
No known key found for this signature in database
GPG key ID: F357B3B42F6F9B05

View file

@ -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+' ' +