用于EagleEye3.0 规则集漏报和误报测试的示例项目,项目收集于github和gitee
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

327 lines
11 KiB

3 months ago
# Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License, version 2.0,
# as published by the Free Software Foundation.
#
# This program is also distributed with certain software (including
# but not limited to OpenSSL) that is licensed under separate terms,
# as designated in a particular file or component or in included license
# documentation. The authors of MySQL hereby grant you an additional
# permission to link the program and your derivative works with the
# separately licensed software that they have included with MySQL.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License, version 2.0, for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
# We want boost 1.70.0 in order to build our boost/geometry code.
# The boost tarball is fairly big, and takes several minutes
# to download. So we recommend downloading/unpacking it
# only once, in a place visible from any git sandbox.
# We use only header files, so there should be no binary dependencies.
# Downloading the tarball takes about 5 minutes here at the office.
# Here are some size/time data for unpacking the tarball on my desktop:
# size tarball-name
# 67M boost_1_55_0.tar.gz unzipping headers ~2 seconds 117M
# unzipping everything ~3 seconds 485M
# 8,8M boost_headers.tar.gz unzipping everything <1 second
# Invoke with -DWITH_BOOST=<directory> or set WITH_BOOST in environment.
# If WITH_BOOST is *not* set, or is set to the special value "system",
# we assume that the correct version (see below)
# is installed on the compile host in the standard location.
SET(BOOST_PACKAGE_NAME "boost_1_70_0")
SET(BOOST_TARBALL "${BOOST_PACKAGE_NAME}.tar.gz")
SET(BOOST_DOWNLOAD_URL
"https://dl.bintray.com/boostorg/release/1.70.0/source/${BOOST_TARBALL}"
)
SET(OLD_PACKAGE_NAMES
"boost_1_55_0"
"boost_1_56_0"
"boost_1_57_0"
"boost_1_58_0"
"boost_1_59_0"
"boost_1_60_0"
"boost_1_61_0"
"boost_1_62_0"
"boost_1_63_0"
"boost_1_64_0"
"boost_1_65_0"
"boost_1_66_0"
"boost_1_67_0"
"boost_1_68_0"
"boost_1_69_0"
)
MACRO(RESET_BOOST_VARIABLES)
UNSET(BOOST_INCLUDE_DIR)
UNSET(BOOST_INCLUDE_DIR CACHE)
UNSET(LOCAL_BOOST_DIR)
UNSET(LOCAL_BOOST_DIR CACHE)
UNSET(LOCAL_BOOST_ZIP)
UNSET(LOCAL_BOOST_ZIP CACHE)
ENDMACRO()
MACRO(ECHO_BOOST_VARIABLES)
MESSAGE(STATUS "BOOST_INCLUDE_DIR ${BOOST_INCLUDE_DIR}")
MESSAGE(STATUS "LOCAL_BOOST_DIR ${LOCAL_BOOST_DIR}")
MESSAGE(STATUS "LOCAL_BOOST_ZIP ${LOCAL_BOOST_ZIP}")
ENDMACRO()
MACRO(LOOKUP_OLD_PACKAGE_NAMES)
FOREACH(pkg ${OLD_PACKAGE_NAMES})
FIND_FILE(OLD_BOOST_DIR
NAMES "${pkg}"
PATHS ${WITH_BOOST}
NO_DEFAULT_PATH
)
IF(OLD_BOOST_DIR)
MESSAGE(STATUS "")
MESSAGE(STATUS "Found old boost installation at ${OLD_BOOST_DIR}")
MESSAGE(STATUS "You must upgrade to ${BOOST_PACKAGE_NAME}")
MESSAGE(STATUS "")
ENDIF()
UNSET(OLD_BOOST_DIR)
UNSET(OLD_BOOST_DIR CACHE)
ENDFOREACH()
ENDMACRO()
MACRO(COULD_NOT_FIND_BOOST)
LOOKUP_OLD_PACKAGE_NAMES()
ECHO_BOOST_VARIABLES()
RESET_BOOST_VARIABLES()
MESSAGE(STATUS "Could not find (the correct version of) boost.")
MESSAGE(STATUS "MySQL currently requires ${BOOST_PACKAGE_NAME}\n")
MESSAGE(FATAL_ERROR
"You can download it with -DDOWNLOAD_BOOST=1 -DWITH_BOOST=<directory>\n"
"This CMake script will look for boost in <directory>. "
"If it is not there, it will download and unpack it "
"(in that directory) for you.\n"
"You can also download boost manually, from ${BOOST_DOWNLOAD_URL}\n"
"If you are inside a firewall, you may need to use an https proxy:\n"
"export https_proxy=http://example.com:80\n"
)
ENDMACRO()
# Pick value from environment if not set on command line.
IF(DEFINED ENV{WITH_BOOST} AND NOT DEFINED WITH_BOOST)
SET(WITH_BOOST "$ENV{WITH_BOOST}")
ENDIF()
# Pick value from environment if not set on command line.
IF(DEFINED ENV{BOOST_ROOT} AND NOT DEFINED WITH_BOOST)
SET(WITH_BOOST "$ENV{BOOST_ROOT}")
ENDIF()
IF(WITH_BOOST AND WITH_BOOST STREQUAL "system")
UNSET(WITH_BOOST)
UNSET(WITH_BOOST CACHE)
ENDIF()
# Update the cache, to make it visible in cmake-gui.
SET(WITH_BOOST ${WITH_BOOST} CACHE PATH
"Path to boost sources: a directory, or a tarball to be unzipped.")
# If the value of WITH_BOOST changes, we must unset all dependent variables:
IF(OLD_WITH_BOOST)
IF(NOT "${OLD_WITH_BOOST}" STREQUAL "${WITH_BOOST}")
RESET_BOOST_VARIABLES()
ENDIF()
ENDIF()
SET(OLD_WITH_BOOST ${WITH_BOOST} CACHE INTERNAL
"Previous version of WITH_BOOST" FORCE)
IF (WITH_BOOST)
## Did we get a full path name, including file name?
IF (${WITH_BOOST} MATCHES ".*\\.tar.gz" OR ${WITH_BOOST} MATCHES ".*\\.zip")
GET_FILENAME_COMPONENT(BOOST_DIR ${WITH_BOOST} PATH)
GET_FILENAME_COMPONENT(BOOST_ZIP ${WITH_BOOST} NAME)
FIND_FILE(LOCAL_BOOST_ZIP
NAMES ${BOOST_ZIP}
PATHS ${BOOST_DIR}
NO_DEFAULT_PATH
)
ENDIF()
## Did we get a path name to the directory of the .tar.gz or .zip file?
FIND_FILE(LOCAL_BOOST_ZIP
NAMES "${BOOST_PACKAGE_NAME}.tar.gz" "${BOOST_PACKAGE_NAME}.zip"
PATHS ${WITH_BOOST}
NO_DEFAULT_PATH
)
## Did we get a path name to the directory of an unzipped version?
FIND_FILE(LOCAL_BOOST_DIR
NAMES "${BOOST_PACKAGE_NAME}"
PATHS ${WITH_BOOST}
NO_DEFAULT_PATH
)
## Did we get a path name to an unzippped version?
FIND_PATH(LOCAL_BOOST_DIR
NAMES "boost/version.hpp"
PATHS ${WITH_BOOST}
NO_DEFAULT_PATH
)
IF(LOCAL_BOOST_DIR)
MESSAGE(STATUS "Local boost dir ${LOCAL_BOOST_DIR}")
ENDIF()
IF(LOCAL_BOOST_ZIP)
MESSAGE(STATUS "Local boost zip ${LOCAL_BOOST_ZIP}")
GET_FILE_SIZE(${LOCAL_BOOST_ZIP} LOCAL_BOOST_ZIP_SIZE)
IF(LOCAL_BOOST_ZIP_SIZE EQUAL 0)
# A previous failed download has left an empty file, most likely the
# user pressed Ctrl-C to kill a hanging connection due to missing vpn
# proxy. Remove it!
MESSAGE("${LOCAL_BOOST_ZIP} is zero length. Deleting it.")
FILE(REMOVE ${WITH_BOOST}/${BOOST_TARBALL})
UNSET(LOCAL_BOOST_ZIP)
UNSET(LOCAL_BOOST_ZIP CACHE)
ENDIF()
UNSET(LOCAL_BOOST_ZIP_ZERO_LENGTH)
ENDIF()
ENDIF()
# There is a similar option in unittest/gunit.
# But the boost tarball is much bigger, so we have a separate option.
OPTION(DOWNLOAD_BOOST "Download boost from sourceforge." OFF)
SET(DOWNLOAD_BOOST_TIMEOUT 600 CACHE STRING
"Timeout in seconds when downloading boost.")
# If we could not find it, then maybe download it.
IF(WITH_BOOST AND NOT LOCAL_BOOST_ZIP AND NOT LOCAL_BOOST_DIR)
IF(NOT DOWNLOAD_BOOST)
MESSAGE(STATUS "WITH_BOOST=${WITH_BOOST}")
COULD_NOT_FIND_BOOST()
ENDIF()
# Download the tarball
MESSAGE(STATUS "Downloading ${BOOST_TARBALL} to ${WITH_BOOST}")
FILE(DOWNLOAD ${BOOST_DOWNLOAD_URL}
${WITH_BOOST}/${BOOST_TARBALL}
TIMEOUT ${DOWNLOAD_BOOST_TIMEOUT}
STATUS ERR
SHOW_PROGRESS
)
IF(ERR EQUAL 0)
SET(LOCAL_BOOST_ZIP "${WITH_BOOST}/${BOOST_TARBALL}")
SET(LOCAL_BOOST_ZIP "${WITH_BOOST}/${BOOST_TARBALL}" CACHE INTERNAL "")
ELSE()
MESSAGE(STATUS "Download failed, error: ${ERR}")
# A failed DOWNLOAD leaves an empty file, remove it
FILE(REMOVE ${WITH_BOOST}/${BOOST_TARBALL})
# STATUS returns a list of length 2
LIST(GET ERR 0 NUMERIC_RETURN)
IF(NUMERIC_RETURN EQUAL 28)
MESSAGE(FATAL_ERROR
"You can try downloading ${BOOST_DOWNLOAD_URL} manually"
" using curl/wget or a similar tool,"
" or increase the value of DOWNLOAD_BOOST_TIMEOUT"
" (which is now ${DOWNLOAD_BOOST_TIMEOUT} seconds)"
)
ENDIF()
MESSAGE(FATAL_ERROR
"You can try downloading ${BOOST_DOWNLOAD_URL} manually"
" using curl/wget or a similar tool"
)
ENDIF()
ENDIF()
IF(LOCAL_BOOST_ZIP AND NOT LOCAL_BOOST_DIR)
GET_FILENAME_COMPONENT(LOCAL_BOOST_DIR ${LOCAL_BOOST_ZIP} PATH)
IF(NOT EXISTS "${LOCAL_BOOST_DIR}/${BOOST_PACKAGE_NAME}")
MESSAGE(STATUS "cd ${LOCAL_BOOST_DIR}; tar xfz ${LOCAL_BOOST_ZIP}")
EXECUTE_PROCESS(
COMMAND ${CMAKE_COMMAND} -E tar xfz "${LOCAL_BOOST_ZIP}"
WORKING_DIRECTORY "${LOCAL_BOOST_DIR}"
RESULT_VARIABLE tar_result
)
IF (tar_result MATCHES 0)
SET(BOOST_FOUND 1 CACHE INTERNAL "")
ELSE()
MESSAGE(STATUS "WITH_BOOST ${WITH_BOOST}.")
MESSAGE(STATUS "Failed to extract files.\n"
" Please try downloading and extracting yourself.\n"
" The url is: ${BOOST_DOWNLOAD_URL}")
MESSAGE(FATAL_ERROR "Giving up.")
ENDIF()
ENDIF()
ENDIF()
# Search for the version file, first in LOCAL_BOOST_DIR or WITH_BOOST
FIND_PATH(BOOST_INCLUDE_DIR
NAMES boost/version.hpp
NO_DEFAULT_PATH
PATHS ${LOCAL_BOOST_DIR}
${LOCAL_BOOST_DIR}/${BOOST_PACKAGE_NAME}
${WITH_BOOST}
)
# Then search in standard places (if not found above).
FIND_PATH(BOOST_INCLUDE_DIR
NAMES boost/version.hpp
)
IF(NOT BOOST_INCLUDE_DIR)
MESSAGE(STATUS
"Looked for boost/version.hpp in ${LOCAL_BOOST_DIR} and ${WITH_BOOST}")
COULD_NOT_FIND_BOOST()
ELSE()
MESSAGE(STATUS "Found ${BOOST_INCLUDE_DIR}/boost/version.hpp ")
ENDIF()
# Verify version number. Version information looks like:
# // BOOST_VERSION % 100 is the patch level
# // BOOST_VERSION / 100 % 1000 is the minor version
# // BOOST_VERSION / 100000 is the major version
# #define BOOST_VERSION 107000
FILE(STRINGS "${BOOST_INCLUDE_DIR}/boost/version.hpp"
BOOST_VERSION_NUMBER
REGEX "^#define[\t ]+BOOST_VERSION[\t ][0-9]+.*"
)
STRING(REGEX REPLACE
"^.*BOOST_VERSION[\t ]([0-9][0-9])([0-9][0-9])([0-9][0-9]).*$" "\\1"
BOOST_MAJOR_VERSION "${BOOST_VERSION_NUMBER}")
STRING(REGEX REPLACE
"^.*BOOST_VERSION[\t ]([0-9][0-9])([0-9][0-9])([0-9][0-9]).*$" "\\2"
BOOST_MINOR_VERSION "${BOOST_VERSION_NUMBER}")
MESSAGE(STATUS "BOOST_VERSION_NUMBER is ${BOOST_VERSION_NUMBER}")
IF(NOT BOOST_MAJOR_VERSION EQUAL 10)
COULD_NOT_FIND_BOOST()
ENDIF()
IF(NOT BOOST_MINOR_VERSION EQUAL 70)
MESSAGE(WARNING "Boost minor version found is ${BOOST_MINOR_VERSION} "
"we need 70"
)
COULD_NOT_FIND_BOOST()
ENDIF()
MESSAGE(STATUS "BOOST_INCLUDE_DIR ${BOOST_INCLUDE_DIR}")
# We have a limited set of patches/bugfixes here:
SET(BOOST_PATCHES_DIR "${CMAKE_SOURCE_DIR}/include/boost_1_70_0/patches")
# Bug in sqrt(NaN) on 32bit platforms
IF(SIZEOF_VOIDP EQUAL 4)
ADD_DEFINITIONS(-DBOOST_GEOMETRY_SQRT_CHECK_FINITENESS)
ENDIF()
# Boost gets confused about language support with Clang 7 + MSVC 15.9
IF(WIN32_CLANG)
ADD_DEFINITIONS(-DBOOST_NO_CXX17_HDR_STRING_VIEW)
ENDIF()
IF(LOCAL_BOOST_DIR OR LOCAL_BOOST_ZIP)
SET(USING_LOCAL_BOOST 1)
ELSE()
SET(USING_SYSTEM_BOOST 1)
ENDIF()