Skip to content
Snippets Groups Projects
Commit 77d23029 authored by Lars Bilke's avatar Lars Bilke
Browse files

[cmake] Increase number of heavy tasks in job pools on Apple ARM.

parent 93c389ce
No related branches found
No related tags found
No related merge requests found
...@@ -24,4 +24,8 @@ setup_job_pool(light_tasks 800) # MB per task ...@@ -24,4 +24,8 @@ setup_job_pool(light_tasks 800) # MB per task
set(CMAKE_JOB_POOL_COMPILE light_tasks) set(CMAKE_JOB_POOL_COMPILE light_tasks)
set(CMAKE_JOB_POOL_LINK light_tasks) set(CMAKE_JOB_POOL_LINK light_tasks)
setup_job_pool(heavy_tasks 4000) if(APPLE_ARM)
setup_job_pool(heavy_tasks 2500)
else()
setup_job_pool(heavy_tasks 4000)
endif()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment