We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a3690e commit c69be26Copy full SHA for c69be26
cmake/jemalloc.cmake
@@ -38,7 +38,9 @@ ExternalProject_Add(jemalloc
38
"CFLAGS=${CMAKE_C_FLAGS} -Wno-missing-attributes"
39
40
BUILD_COMMAND ${MAKE}
41
- INSTALL_COMMAND make install
+ # TODO: -j1 is a workaround for GH-39628: [C++] Use -j1 for cmake >= 3.28
42
+ # Similar solution in Apache Arrow: https://github.com/apache/arrow/pull/39629
43
+ INSTALL_COMMAND make install -j1
44
45
LOG_DOWNLOAD True
46
LOG_UPDATE True
0 commit comments