pitrou commented on code in PR #50990: URL: https://github.com/apache/arrow/pull/50990#discussion_r3892849499
########## cpp/src/arrow/CMakeLists.txt: ########## @@ -644,6 +644,13 @@ endif() if(ARROW_WITH_OPENTELEMETRY) list(APPEND ARROW_UTIL_SRCS util/tracing_internal.cc) endif() +if(ARROW_WITH_SIMDJSON) + list(APPEND + ARROW_UTIL_SRCS + json/object_parser.cc Review Comment: If `object_parser.cc` is necessary even with `ARROW_JSON` disabled, perhaps it should be moved outside of the `json` directory? It seems it's Parquet-only by the way. -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
