kou commented on PR #13157: URL: https://github.com/apache/arrow/pull/13157#issuecomment-1198833256
Sure. Our build used header files provided by aws-sdk-cpp installed by Homebrew but used library files provided by our bundled aws-sdk-cpp. It causes the problem. Our build used packages installed by Homebrew. Our build adds `-I$(brew --prefix)/include` for them. aws-sdk-cpp installed by Homebrew installs it's header files to `$(brew --prefix)/include`. Our build used bundled aws-sdk-cpp but header files provided by aws-sdk-cpp installed by Homebrew are used because header file search path includes `$(brew --prefix)/include` before header file search path for bundled aws-sdk-cpp. -- 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]
