assignUser commented on code in PR #719: URL: https://github.com/apache/arrow-nanoarrow/pull/719#discussion_r1992046218
########## src/nanoarrow/nanoarrow.h: ########## @@ -139,6 +139,20 @@ #endif +#if (defined _WIN32 || defined __CYGWIN__) && defined(NANOARROW_BUILD_DLL) +#if defined(NANOARROW_EXPORT_DLL) +#define NANOARROW_DLL __declspec(dllexport) +#else +#define NANOARROW_DLL __declspec(dllimport) +#endif // defined(NANOARROW_EXPORT_DLL) +#elif !defined(NANOARROW_DLL) +#if __GNUC__ >= 4 +#define NANOARROW_DLL __attribute__((visibility("default"))) +#else +#define NANOARROW_DLL +#endif // __GNUC__ >= 4 +#endif Review Comment: Yes distributing both .a and .so is certainly not uncommon. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org