Skip to content

Commit d720d1a

Browse files
committed
Some addtional explanation. Also, retry with latest python-blosc2 2.6.1.
1 parent 7bee101 commit d720d1a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/CMakeLists.txt

+4
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ set(CMAKE_FIND_FRAMEWORK NEVER)
3535
add_subdirectory(grok)
3636

3737
# Build libblosc2_grok.so
38+
# We will be using SHARED or MODULE depending on the platform.
39+
# Ideally, we would like to use SHARED for all platforms
40+
# because that allows to link with C++ code in the shared library.
41+
# Unfortunately, not every platform supports SHARED.
3842
if (UNIX AND NOT APPLE) # Linux
3943
add_library(blosc2_grok SHARED blosc2_grok.cpp)
4044
elseif (APPLE)

0 commit comments

Comments
 (0)