lidavidm commented on pull request #11889:
URL: https://github.com/apache/arrow/pull/11889#issuecomment-1058479114


   The link order is still wrong:
   
   ```
   : && /usr/bin/c++ -O3 -DNDEBUG  CMakeFiles/arrow_example.dir/example.cc.o -o 
arrow_example  
/home/lidavidm/Code/upstream/rok-arrow-14708/install/lib/libarrow.a  
/home/lidavidm/Code/upstream/rok-arrow-14708/install/lib/libarrow_flight.a  
/home/lidavidm/Code/upstream/rok-arrow-14708/install/lib/libarrow_bundled_dependencies.a
  -pthread && :
   ```
   
   and we're still missing gRPC in the bundled dependencies and OpenSSL in the 
dependency list. (Though, maybe that last one is the application's 
responsibility? Not sure if CMake is supposed to pick that up automatically.)
   
   When I try to fix it manually:
   
   ```
   /usr/bin/c++ -O3 -DNDEBUG  CMakeFiles/arrow_example.dir/example.cc.o -o 
arrow_example  
/home/lidavidm/Code/upstream/rok-arrow-14708/install/lib/libarrow_flight.a  
/home/lidavidm/Code/upstream/rok-arrow-14708/install/lib/libarrow.a 
/home/lidavidm/Code/upstream/rok-arrow-14708/build/grpc_ep-install/lib/libgrpc*.a
 
/home/lidavidm/Code/upstream/rok-arrow-14708/build/grpc_ep-install/lib/libgpr.a 
/home/lidavidm/Code/upstream/rok-arrow-14708/build/grpc_ep-install/lib/libupb.a 
/home/lidavidm/Code/upstream/rok-arrow-14708/install/lib/libarrow_bundled_dependencies.a
 -lssl -lcrypto  -pthread
   ```
   
   there's still a lot of missing Abseil symbols.


-- 
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]


Reply via email to