Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit5326758

Browse files
committed
Attempt at fixing CI for jemalloc static library compile for DuckDB
1 parent1963991 commit5326758

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

‎CMakeLists.txt‎

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,12 +92,13 @@ target_link_libraries(duckdb
9292
"${DUCKDB_INSTALL_DIR}/lib/libparquet_extension.a"
9393
)
9494

95-
if (UNIXANDNOTAPPLE)
95+
# Only link jemalloc_extension on Linux x86_64 and i386 (not arm64)
96+
if (CMAKE_SYSTEM_NAMESTREQUAL"Linux"ANDCMAKE_SYSTEM_PROCESSORSTREQUAL"x86_64")
9697
target_link_libraries(duckdb
9798
INTERFACE
9899
"${DUCKDB_INSTALL_DIR}/lib/libjemalloc_extension.a"
99100
)
100-
endif()
101+
endif()
101102

102103
# --------------------- JWT-CPP ---------------------
103104

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp