Files
impala/cmake_modules/FindThriftJava.cmake
Riza Suminto 06b1db4675 IMPALA-11369: Separate thrift compiler for different component
Impala used to have one thrift compiler version to compile C++, Java,
and Python code.

Most Thrift serialization/deserialization between minor versions are
compatible with each other. So it is possible to have different thrift
compiler versions for different target codes. It is beneficial to do so
because it will allow Impala to upgrade separate components
independently.

This patch implements the infrastructure change required to do so. It
replace most of the 'THRIFT_*' environment variable and CMake variable
with 'THRFIT_CPP_*', 'THRFIT_JAVA_*', and 'THRFIT_PY_*' to compile C++,
Java, and Python code accordingly. All three still refer to the same
thrift version (thrift-0.11.0-p5).

Testing:
- Build Impala and pass core tests.

Change-Id: I56479dc69b79024d1a4d09211bbe88a61fa0c6a4
Reviewed-on: http://gerrit.cloudera.org:8080/18636
Reviewed-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
2022-06-21 02:40:59 +00:00

50 lines
1.6 KiB
CMake

##############################################################################
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
##############################################################################
# - Find Thrift (a cross platform RPC lib/tool)
# THRIFT_JAVA_ROOT hints the location
#
# This module defines
# THRIFT_JAVA_CONTRIB_DIR, where contrib thrift files (e.g. fb303.thrift) are installed
# THRIFT_JAVA_COMPILER, where to find thrift compiler
# prefer the thrift version supplied in THRIFT_JAVA_HOME
if (NOT THRIFT_JAVA_FIND_QUIETLY)
message(STATUS "THRIFT_JAVA_HOME: $ENV{THRIFT_JAVA_HOME}")
endif()
find_path(THRIFT_JAVA_CONTRIB_DIR share/fb303/if/fb303.thrift HINTS
${THRIFT_JAVA_ROOT}/include
$ENV{THRIFT_JAVA_HOME}
/usr/local/
)
find_program(THRIFT_JAVA_COMPILER thrift
${THRIFT_JAVA_ROOT}/bin
$ENV{THRIFT_JAVA_HOME}/bin
/usr/local/bin
/usr/bin
NO_DEFAULT_PATH
)
mark_as_advanced(
THRIFT_JAVA_COMPILER
)