abhishekjog opened a new pull request, #1416:
URL: https://github.com/apache/arrow-adbc/pull/1416

   ```
   [root@pgsandbox1 c]# cmake CMakeLists.txt -DADBC_DRIVER_NETEZZA=ON
   -- The C compiler identification is GNU 8.5.0
   -- The CXX compiler identification is GNU 8.5.0
   -- Detecting C compiler ABI info
   -- Detecting C compiler ABI info - done
   -- Check for working C compiler: /usr/bin/cc - skipped
   -- Detecting C compile features
   -- Detecting C compile features - done
   -- Detecting CXX compiler ABI info
   -- Detecting CXX compiler ABI info - done
   -- Check for working CXX compiler: /usr/bin/c++ - skipped
   -- Detecting CXX compile features
   -- Detecting CXX compile features - done
   -- Performing Test CXX_LINKER_SUPPORTS_VERSION_SCRIPT
   -- Performing Test CXX_LINKER_SUPPORTS_VERSION_SCRIPT - Success
   -- Found PkgConfig: /usr/bin/pkg-config (found version "1.4.2")
   -- Checking for module 'libpq'
   --   Found libpq, version 13.11
   -- ---------------------------------------------------------------------
   -- ADBC version: 0.9.0-SNAPSHOT
   --
   -- Build configuration summary:
   --   CMake version: 3.28.1
   --   Generator: Unix Makefiles
   --   Build type:
   --   Source directory: /home/repo/work/arrow-adbc/c
   --   Install prefix: /usr/local
   --
   -- Compile and link options:
   --
   --   ADBC_BUILD_WARNING_LEVEL=CHECKIN [default=""]
   --       CHECKIN to enable Werror, PRODUCTION otherwise
   --   ADBC_CXXFLAGS="" [default=""]
   --       Compiler flags to append when compiling ADBC C++ libraries
   --   ADBC_GO_BUILD_TAGS="" [default=""]
   --       Build tags to append when compiling ADBC Go libraries
   --   ADBC_BUILD_STATIC=ON [default=ON]
   --       Build static libraries
   --   ADBC_BUILD_SHARED=ON [default=ON]
   --       Build shared libraries
   --   ADBC_PACKAGE_KIND="" [default=""]
   --       Arbitrary string that identifies the kind of package
   --       (for informational purposes)
   --   ADBC_GIT_ID=4df8ee1ce1bf833add705f8e1bc684d2e62ff1f1 [default=""]
   --       The Arrow git commit id (if any)
   --   ADBC_GIT_DESCRIPTION="" [default=""]
   --       The Arrow git commit description (if any)
   --   ADBC_NO_DEPRECATED_API=OFF [default=OFF]
   --       Exclude deprecated APIs from build
   --   ADBC_USE_CCACHE=ON [default=ON]
   --       Use ccache when compiling (if available)
   --   ADBC_USE_PRECOMPILED_HEADERS=OFF [default=OFF]
   --       Use precompiled headers when compiling
   --   ADBC_ARMV8_ARCH=armv8-a [default=armv8-a|armv8-a+crc+crypto]
   --       Arm64 arch and extensions
   --   ADBC_ALTIVEC=ON [default=ON]
   --       Build with Altivec if compiler has support
   --   ADBC_RPATH_ORIGIN=OFF [default=OFF]
   --       Build Arrow libraries with RATH set to $ORIGIN
   --   ADBC_INSTALL_NAME_RPATH=ON [default=ON]
   --       Build Arrow libraries with install_name set to @rpath
   --   ADBC_GGDB_DEBUG=ON [default=ON]
   --       Pass -ggdb flag to debug builds
   --
   -- Test and benchmark options:
   --
   --   ADBC_BUILD_EXAMPLES=OFF [default=OFF]
   --       Build the Arrow examples
   --   ADBC_BUILD_TESTS=OFF [default=OFF]
   --       Build the Arrow googletest unit tests
   --   ADBC_BUILD_INTEGRATION=OFF [default=OFF]
   --       Build the Arrow integration test executables
   --   ADBC_BUILD_BENCHMARKS=OFF [default=OFF]
   --       Build the Arrow micro benchmarks
   --   ADBC_TEST_LINKAGE=shared [default=shared|static]
   --       Linkage of Arrow libraries with unit tests executables.
   --
   -- Lint options:
   --
   --   ADBC_GENERATE_COVERAGE=OFF [default=OFF]
   --       Build with C++ code coverage enabled
   --
   -- Checks options:
   --
   --   ADBC_TEST_MEMCHECK=OFF [default=OFF]
   --       Run the test suite using valgrind --tool=memcheck
   --   ADBC_USE_ASAN=OFF [default=OFF]
   --       Enable Address Sanitizer checks
   --   ADBC_USE_TSAN=OFF [default=OFF]
   --       Enable Thread Sanitizer checks
   --   ADBC_USE_UBSAN=OFF [default=OFF]
   --       Enable Undefined Behavior sanitizer checks
   --
   -- Thirdparty toolchain options:
   --
   --   ADBC_DEPENDENCY_SOURCE=AUTO 
[default=AUTO|BUNDLED|SYSTEM|CONDA|VCPKG|BREW]
   --       Method to use for acquiring arrow's build dependencies
   --
   -- Advanced developer options:
   --
   --
   -- Project components options:
   --
   --   ADBC_DRIVER_FLIGHTSQL=OFF [default=OFF]
   --       Build the Flight SQL driver
   --   ADBC_DRIVER_MANAGER=OFF [default=OFF]
   --       Build the driver manager
   --   ADBC_DRIVER_POSTGRESQL=OFF [default=OFF]
   --       Build the PostgreSQL driver
   --   ADBC_DRIVER_NETEZZA=ON [default=OFF]
   --       Build the IBM Netezza driver
   --   ADBC_DRIVER_SQLITE=OFF [default=OFF]
   --       Build the SQLite driver
   --   ADBC_DRIVER_SNOWFLAKE=OFF [default=OFF]
   --       Build the Snowflake driver
   --   ADBC_INTEGRATION_DUCKDB=OFF [default=OFF]
   --       Build the test suite for DuckDB
   -- Configuring done (1.6s)
   -- Generating done (0.0s)
   -- Build files have been written to: /home/repo/work/arrow-adbc/c
   [root@pgsandbox1 c]# make
   [  8%] Building C object 
vendor/nanoarrow/CMakeFiles/nanoarrow.dir/nanoarrow.c.o
   [ 16%] Linking C static library libnanoarrow.a
   [ 16%] Built target nanoarrow
   [ 25%] Building C object 
driver/common/CMakeFiles/adbc_driver_common.dir/utils.c.o
   [ 33%] Linking C static library libadbc_driver_common.a
   [ 33%] Built target adbc_driver_common
   [ 41%] Building CXX object 
driver/netezza/CMakeFiles/adbc_driver_postgresql_objlib.dir/connection.cc.o
   [ 50%] Building CXX object 
driver/netezza/CMakeFiles/adbc_driver_postgresql_objlib.dir/error.cc.o
   [ 58%] Building CXX object 
driver/netezza/CMakeFiles/adbc_driver_postgresql_objlib.dir/database.cc.o
   [ 66%] Building CXX object 
driver/netezza/CMakeFiles/adbc_driver_postgresql_objlib.dir/postgresql.cc.o
   [ 75%] Building CXX object 
driver/netezza/CMakeFiles/adbc_driver_postgresql_objlib.dir/result_helper.cc.o
   [ 83%] Building CXX object 
driver/netezza/CMakeFiles/adbc_driver_postgresql_objlib.dir/statement.cc.o
   [ 83%] Built target adbc_driver_postgresql_objlib
   [ 91%] Linking CXX shared library libadbc_driver_postgresql.so
   [ 91%] Built target adbc_driver_postgresql_shared
   [100%] Linking CXX static library libadbc_driver_postgresql.a
   [100%] Built target adbc_driver_postgresql_static
   [root@pgsandbox1 c]#
   ```


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