nealrichardson commented on a change in pull request #10200:
URL: https://github.com/apache/arrow/pull/10200#discussion_r623406818
##########
File path: r/src/config.cpp
##########
@@ -21,6 +21,13 @@
#include <arrow/config.h>
+// [[arrow::export]]
+std::vector<std::string> build_info() {
+ auto info = arrow::GetBuildInfo();
+ return {info.version_string, info.compiler_id, info.compiler_version,
+ info.compiler_flags, info.git_id};
Review comment:
What happens if I'm not building from a git checkout (like from the
apache source tarball or something)?
--
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.
For queries about this service, please contact Infrastructure at:
[email protected]