Skip to content

Commit

Permalink
Fix for gflags
Browse files Browse the repository at this point in the history
  • Loading branch information
wesm committed Feb 8, 2019
1 parent 5897045 commit 707bc49
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion ci/appveyor-cpp-build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ if "%ARROW_BUILD_GANDIVA%" == "ON" (
if "%JOB%" == "Toolchain" (
@rem Install pre-built "toolchain" packages for faster builds
set CONDA_PACKAGES=%CONDA_PACKAGES% --file=ci\conda_env_cpp.yml
set ARROW_BUILD_TOOLCHAIN=%CONDA_PREFIX%\Library
)

conda create -n arrow -q -y %CONDA_PACKAGES% -c conda-forge
Expand Down
3 changes: 2 additions & 1 deletion ci/cpp-msvc-build-main.bat
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ set ARROW_HOME=%CONDA_PREFIX%\Library
set CMAKE_ARGS=-DARROW_VERBOSE_THIRDPARTY_BUILD=OFF

if "%JOB%" == "Toolchain" (
set CMAKE_ARGS=%CMAKE_ARGS% -DARROW_WITH_BZ2=ON
set CMAKE_ARGS=%CMAKE_ARGS% -DARROW_WITH_BZ2=ON
set ARROW_BUILD_TOOLCHAIN=%CONDA_PREFIX%\Library
)

@rem Retrieve git submodules, configure env var for Parquet unit tests
Expand Down
1 change: 0 additions & 1 deletion cpp/cmake_modules/FindGFlags.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ set(GFLAGS_STATIC_LIB_NAME
${CMAKE_STATIC_LIBRARY_PREFIX}gflags${GFLAGS_STATIC_LIB_SUFFIX})

message(STATUS "GFLAGS_HOME: ${GFLAGS_HOME}")
message(STATUS "_gflags_roots: ${_gflags_roots}")

if ( _gflags_roots )
find_path(GFLAGS_INCLUDE_DIR NAMES gflags/gflags.h
Expand Down

0 comments on commit 707bc49

Please sign in to comment.