2022-01-24 18:40:46 +00:00
|
|
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
|
# Licensed under the MIT License.
|
|
|
|
|
|
|
|
|
|
include(FetchContent)
|
|
|
|
|
|
|
|
|
|
# Pass to build
|
|
|
|
|
set(ABSL_PROPAGATE_CXX_STD 1)
|
|
|
|
|
set(BUILD_TESTING 0)
|
Update C/C++ dependencies: abseil, date, nsync, googletest, wil, mp11, cpuinfo and safeint (#15470)
### Description
Update C/C++ dependencies abseil, date, nsync, googletest, wil, mp11,
cpuinfo and safeint to newer versions per request of @
mayeut. He created the following PRs to update the deps:
https://github.com/microsoft/onnxruntime/pull/15432
https://github.com/microsoft/onnxruntime/pull/15434
https://github.com/microsoft/onnxruntime/pull/15435
https://github.com/microsoft/onnxruntime/pull/15436
https://github.com/microsoft/onnxruntime/pull/15437
However, our build system needs to fetch the dependencies from an
internal mirror that only Microsoft employees have write access to. So I
closed his PRs and created this one.
This PR also updates abseil to a newer version. This is to prepare for
upgrading re2.
2023-09-08 20:35:04 +00:00
|
|
|
set(ABSL_BUILD_TESTING OFF)
|
|
|
|
|
set(ABSL_BUILD_TEST_HELPERS OFF)
|
|
|
|
|
set(ABSL_USE_EXTERNAL_GOOGLETEST ON)
|
2022-12-19 22:25:13 +00:00
|
|
|
if(Patch_FOUND AND WIN32)
|
|
|
|
|
set(ABSL_PATCH_COMMAND ${Patch_EXECUTABLE} --binary --ignore-whitespace -p1 < ${PROJECT_SOURCE_DIR}/patches/abseil/absl_windows.patch)
|
2022-03-08 10:03:06 +00:00
|
|
|
else()
|
2022-12-19 22:25:13 +00:00
|
|
|
set(ABSL_PATCH_COMMAND "")
|
2022-03-08 10:03:06 +00:00
|
|
|
endif()
|
Update C/C++ dependencies: abseil, date, nsync, googletest, wil, mp11, cpuinfo and safeint (#15470)
### Description
Update C/C++ dependencies abseil, date, nsync, googletest, wil, mp11,
cpuinfo and safeint to newer versions per request of @
mayeut. He created the following PRs to update the deps:
https://github.com/microsoft/onnxruntime/pull/15432
https://github.com/microsoft/onnxruntime/pull/15434
https://github.com/microsoft/onnxruntime/pull/15435
https://github.com/microsoft/onnxruntime/pull/15436
https://github.com/microsoft/onnxruntime/pull/15437
However, our build system needs to fetch the dependencies from an
internal mirror that only Microsoft employees have write access to. So I
closed his PRs and created this one.
This PR also updates abseil to a newer version. This is to prepare for
upgrading re2.
2023-09-08 20:35:04 +00:00
|
|
|
if(WIN32 AND NOT Patch_FOUND)
|
|
|
|
|
#see https://github.com/google/re2/issues/425 and https://github.com/google/re2/issues/436
|
|
|
|
|
set(ABSL_ENABLE_INSTALL ON)
|
|
|
|
|
endif()
|
2022-08-02 22:08:17 +00:00
|
|
|
# NB! Advancing Abseil version changes its internal namespace,
|
2024-01-24 22:37:39 +00:00
|
|
|
# currently absl::lts_20240116 which affects abseil-cpp.natvis debugger
|
2022-08-02 22:08:17 +00:00
|
|
|
# visualization file, that must be adjusted accordingly, unless we eliminate
|
|
|
|
|
# that namespace at build time.
|
2022-01-24 18:40:46 +00:00
|
|
|
FetchContent_Declare(
|
|
|
|
|
abseil_cpp
|
2022-11-30 02:06:35 +00:00
|
|
|
URL ${DEP_URL_abseil_cpp}
|
|
|
|
|
URL_HASH SHA1=${DEP_SHA1_abseil_cpp}
|
2022-03-08 10:03:06 +00:00
|
|
|
PATCH_COMMAND ${ABSL_PATCH_COMMAND}
|
2024-10-10 03:21:40 +00:00
|
|
|
FIND_PACKAGE_ARGS 20240722 NAMES absl
|
2022-01-24 18:40:46 +00:00
|
|
|
)
|
|
|
|
|
|
2022-11-30 02:06:35 +00:00
|
|
|
onnxruntime_fetchcontent_makeavailable(abseil_cpp)
|
2022-08-04 16:46:16 +00:00
|
|
|
FetchContent_GetProperties(abseil_cpp)
|
|
|
|
|
set(ABSEIL_SOURCE_DIR ${abseil_cpp_SOURCE_DIR})
|
2024-06-07 02:42:31 +00:00
|
|
|
# abseil_cpp_SOURCE_DIR is non-empty if we build it from source
|
2022-08-04 16:46:16 +00:00
|
|
|
message(STATUS "Abseil source dir:" ${ABSEIL_SOURCE_DIR})
|
2024-06-07 02:42:31 +00:00
|
|
|
# abseil_cpp_VERSION is non-empty if we find a preinstalled ABSL
|
|
|
|
|
if(abseil_cpp_VERSION)
|
|
|
|
|
message(STATUS "Abseil version:" ${abseil_cpp_VERSION})
|
|
|
|
|
endif()
|
2022-04-07 22:06:31 +00:00
|
|
|
if (GDK_PLATFORM)
|
2022-06-09 00:12:59 +00:00
|
|
|
# Abseil considers any partition that is NOT in the WINAPI_PARTITION_APP a viable platform
|
2022-04-07 22:06:31 +00:00
|
|
|
# for Win32 symbolize code (which depends on dbghelp.lib); this logic should really be flipped
|
|
|
|
|
# to only include partitions that are known to support it (e.g. DESKTOP). As a workaround we
|
|
|
|
|
# tell Abseil to pretend we're building an APP.
|
|
|
|
|
target_compile_definitions(absl_symbolize PRIVATE WINAPI_FAMILY=WINAPI_FAMILY_DESKTOP_APP)
|
|
|
|
|
endif()
|
Improve dependency management (#13523)
## Description
1. Convert some git submodules to cmake external projects
2. Update nsync from
[1.23.0](https://github.com/google/nsync/releases/tag/1.23.0) to
[1.25.0](https://github.com/google/nsync/releases/tag/1.25.0)
3. Update re2 from 2021-06-01 to 2022-06-01
4. Update wil from an old commit to 1.0.220914.1 tag
5. Update gtest to a newer commit so that it can optionally leverage
absl/re2 for parsing command line flags.
The following git submodules are deleted:
1. FP16
2. safeint
3. XNNPACK
4. cxxopts
5. dlpack
7. flatbuffers
8. googlebenchmark
9. json
10. mimalloc
11. mp11
12. pthreadpool
More will come.
## Motivation and Context
There are 3 ways of integrating 3rd party C/C++ libraries into ONNX
Runtime:
1. Install them to a system location, then use cmake's find_package
module to locate them.
2. Use git submodules
6. Use cmake's external projects(externalproject_add).
At first when this project was just started, we considered both option 2
and option 3. We preferred option 2 because:
1. It's easier to handle authentication. At first this project was not
open source, and it had some other non-public dependencies. If we use
git submodule, ADO will handle authentication smoothly. Otherwise we
need to manually pass tokens around and be very careful on not exposing
them in build logs.
2. At that time, cmake fetched dependencies after "cmake" finished
generating vcprojects/makefiles. So it was very difficult to make cflags
consistent. Since cmake 3.11, it has a new command: FetchContent, which
fetches dependencies when it generates vcprojects/makefiles just before
add_subdirectories, so the parent project's variables/settings can be
easily passed to the child projects.
And when the project went on, we had some new concerns:
1. As we started to have more and more EPs and build configs, the number
of submodules grew quickly. For more developers, most ORT submodules are
not relevant to them. They shouldn't need to download all of them.
2. It is impossible to let two different build configs use two different
versions of the same dependency. For example, right now we have protobuf
3.18.3 in the submodules. Then every EP must use the same version.
Whenever we have a need to upgrade protobuf, we need to coordinate
across the whole team and many external developers. I can't manage it
anymore.
3. Some projects want to manage the dependencies in a different way,
either because of their preference or because of compliance
requirements. For example, some Microsoft teams want to use vcpkg, but
we don't want to force every user of onnxruntime using vcpkg.
7. Someone wants to dynamically link to protobuf, but our build script
only does static link.
8. Hard to handle security vulnerabilities. For example, whenever
protobuf has a security patch, we have a lot of things to do. But if we
allowed people to build ORT with a different version of protobuf without
changing ORT"s source code, the customer who build ORT from source will
be able to act on such things in a quicker way. They will not need to
wait ORT having a patch release.
9. Every time we do a release, github will also publish a source file
zip file and a source file tarball for us. But they are not usable,
because they miss submodules.
### New features
After this change, users will be able to:
1. Build the dependencies in the way they want, then install them to
somewhere(for example, /usr or a temp folder).
2. Or download the dependencies by using cmake commands from these
dependencies official website
3. Similar to the above, but use your private mirrors to migrate supply
chain risks.
4. Use different versions of the dependencies, as long as our source
code is compatible with them. For example, you may use you can't use
protobuf 3.20.x as they need code changes in ONNX Runtime.
6. Only download the things the current build needs.
10. Avoid building external dependencies again and again in every build.
### Breaking change
The onnxruntime_PREFER_SYSTEM_LIB build option is removed you could think from now
it is default ON. If you don't like the new behavior, you can set FETCHCONTENT_TRY_FIND_PACKAGE_MODE to NEVER.
Besides, for who relied on the onnxruntime_PREFER_SYSTEM_LIB build
option, please be aware that this PR will change find_package calls from
Module mode to Config mode. For example, in the past if you have
installed protobuf from apt-get from ubuntu 20.04's official repo,
find_package can find it and use it. But after this PR, it won't. This
is because that protobuf version provided by Ubuntu 20.04 is too old to
support the "config mode". It can be resolved by getting a newer version
of protobuf from somewhere.
2022-12-01 17:51:59 +00:00
|
|
|
|
Update C/C++ dependencies: abseil, date, nsync, googletest, wil, mp11, cpuinfo and safeint (#15470)
### Description
Update C/C++ dependencies abseil, date, nsync, googletest, wil, mp11,
cpuinfo and safeint to newer versions per request of @
mayeut. He created the following PRs to update the deps:
https://github.com/microsoft/onnxruntime/pull/15432
https://github.com/microsoft/onnxruntime/pull/15434
https://github.com/microsoft/onnxruntime/pull/15435
https://github.com/microsoft/onnxruntime/pull/15436
https://github.com/microsoft/onnxruntime/pull/15437
However, our build system needs to fetch the dependencies from an
internal mirror that only Microsoft employees have write access to. So I
closed his PRs and created this one.
This PR also updates abseil to a newer version. This is to prepare for
upgrading re2.
2023-09-08 20:35:04 +00:00
|
|
|
# TODO: since multiple ORT's dependencies depend on Abseil, the list below would vary from version to version.
|
|
|
|
|
# We'd better to not manually manage the list.
|
2024-05-23 21:30:15 +00:00
|
|
|
set(ABSEIL_LIBS
|
2024-07-23 17:00:36 +00:00
|
|
|
absl::absl_log
|
|
|
|
|
absl::log_internal_log_impl
|
|
|
|
|
absl::log_internal_strip
|
|
|
|
|
absl::log_internal_message
|
|
|
|
|
absl::log_internal_format
|
|
|
|
|
absl::synchronization
|
|
|
|
|
absl::str_format
|
Update C/C++ dependencies: abseil, date, nsync, googletest, wil, mp11, cpuinfo and safeint (#15470)
### Description
Update C/C++ dependencies abseil, date, nsync, googletest, wil, mp11,
cpuinfo and safeint to newer versions per request of @
mayeut. He created the following PRs to update the deps:
https://github.com/microsoft/onnxruntime/pull/15432
https://github.com/microsoft/onnxruntime/pull/15434
https://github.com/microsoft/onnxruntime/pull/15435
https://github.com/microsoft/onnxruntime/pull/15436
https://github.com/microsoft/onnxruntime/pull/15437
However, our build system needs to fetch the dependencies from an
internal mirror that only Microsoft employees have write access to. So I
closed his PRs and created this one.
This PR also updates abseil to a newer version. This is to prepare for
upgrading re2.
2023-09-08 20:35:04 +00:00
|
|
|
absl::flags
|
2024-07-23 17:00:36 +00:00
|
|
|
absl::log_internal_globals
|
|
|
|
|
absl::kernel_timeout_internal
|
|
|
|
|
absl::str_format_internal
|
Update C/C++ dependencies: abseil, date, nsync, googletest, wil, mp11, cpuinfo and safeint (#15470)
### Description
Update C/C++ dependencies abseil, date, nsync, googletest, wil, mp11,
cpuinfo and safeint to newer versions per request of @
mayeut. He created the following PRs to update the deps:
https://github.com/microsoft/onnxruntime/pull/15432
https://github.com/microsoft/onnxruntime/pull/15434
https://github.com/microsoft/onnxruntime/pull/15435
https://github.com/microsoft/onnxruntime/pull/15436
https://github.com/microsoft/onnxruntime/pull/15437
However, our build system needs to fetch the dependencies from an
internal mirror that only Microsoft employees have write access to. So I
closed his PRs and created this one.
This PR also updates abseil to a newer version. This is to prepare for
upgrading re2.
2023-09-08 20:35:04 +00:00
|
|
|
absl::hash
|
2024-07-23 17:00:36 +00:00
|
|
|
absl::log_internal_append_truncated
|
|
|
|
|
absl::absl_vlog_is_on
|
|
|
|
|
absl::flags_commandlineflag
|
|
|
|
|
absl::time
|
|
|
|
|
absl::symbolize
|
|
|
|
|
absl::graphcycles_internal
|
|
|
|
|
absl::log_internal_conditions
|
|
|
|
|
absl::strings
|
|
|
|
|
absl::malloc_internal
|
|
|
|
|
absl::demangle_internal
|
Update C/C++ dependencies: abseil, date, nsync, googletest, wil, mp11, cpuinfo and safeint (#15470)
### Description
Update C/C++ dependencies abseil, date, nsync, googletest, wil, mp11,
cpuinfo and safeint to newer versions per request of @
mayeut. He created the following PRs to update the deps:
https://github.com/microsoft/onnxruntime/pull/15432
https://github.com/microsoft/onnxruntime/pull/15434
https://github.com/microsoft/onnxruntime/pull/15435
https://github.com/microsoft/onnxruntime/pull/15436
https://github.com/microsoft/onnxruntime/pull/15437
However, our build system needs to fetch the dependencies from an
internal mirror that only Microsoft employees have write access to. So I
closed his PRs and created this one.
This PR also updates abseil to a newer version. This is to prepare for
upgrading re2.
2023-09-08 20:35:04 +00:00
|
|
|
absl::optional
|
2024-07-23 17:00:36 +00:00
|
|
|
absl::stacktrace
|
|
|
|
|
absl::base
|
|
|
|
|
absl::demangle_rust
|
|
|
|
|
absl::bad_optional_access
|
|
|
|
|
absl::strings_internal
|
|
|
|
|
absl::debugging_internal
|
|
|
|
|
absl::int128
|
|
|
|
|
absl::spinlock_wait
|
|
|
|
|
absl::decode_rust_punycode
|
Update C/C++ dependencies: abseil, date, nsync, googletest, wil, mp11, cpuinfo and safeint (#15470)
### Description
Update C/C++ dependencies abseil, date, nsync, googletest, wil, mp11,
cpuinfo and safeint to newer versions per request of @
mayeut. He created the following PRs to update the deps:
https://github.com/microsoft/onnxruntime/pull/15432
https://github.com/microsoft/onnxruntime/pull/15434
https://github.com/microsoft/onnxruntime/pull/15435
https://github.com/microsoft/onnxruntime/pull/15436
https://github.com/microsoft/onnxruntime/pull/15437
However, our build system needs to fetch the dependencies from an
internal mirror that only Microsoft employees have write access to. So I
closed his PRs and created this one.
This PR also updates abseil to a newer version. This is to prepare for
upgrading re2.
2023-09-08 20:35:04 +00:00
|
|
|
absl::raw_logging_internal
|
2024-07-23 17:00:36 +00:00
|
|
|
absl::flat_hash_set
|
|
|
|
|
absl::flat_hash_map
|
|
|
|
|
absl::node_hash_map
|
|
|
|
|
absl::node_hash_set
|
|
|
|
|
absl::compare
|
|
|
|
|
absl::base_internal
|
|
|
|
|
absl::nullability
|
|
|
|
|
absl::bounded_utf8_length_sequence
|
|
|
|
|
absl::log_severity
|
|
|
|
|
absl::type_traits
|
|
|
|
|
absl::atomic_hook
|
2024-05-23 21:30:15 +00:00
|
|
|
absl::bits
|
2024-07-23 17:00:36 +00:00
|
|
|
absl::flags_commandlineflag_internal
|
|
|
|
|
absl::hash_container_defaults
|
2024-05-23 21:30:15 +00:00
|
|
|
absl::numeric_representation
|
2024-07-23 17:00:36 +00:00
|
|
|
absl::node_slot_policy
|
2024-05-23 21:30:15 +00:00
|
|
|
absl::core_headers
|
2024-07-23 17:00:36 +00:00
|
|
|
absl::dynamic_annotations
|
|
|
|
|
absl::utf8_for_code_point
|
|
|
|
|
absl::errno_saver
|
|
|
|
|
absl::absl_check
|
|
|
|
|
absl::hash_function_defaults
|
|
|
|
|
absl::function_ref
|
|
|
|
|
absl::city
|
|
|
|
|
absl::low_level_hash
|
|
|
|
|
absl::fixed_array
|
|
|
|
|
absl::variant
|
|
|
|
|
absl::meta
|
|
|
|
|
absl::log_internal_voidify
|
|
|
|
|
absl::log_sink
|
|
|
|
|
absl::log_internal_log_sink_set
|
|
|
|
|
absl::log_sink_registry
|
|
|
|
|
absl::log_entry
|
|
|
|
|
absl::log_globals
|
|
|
|
|
absl::log_internal_nullguard
|
|
|
|
|
absl::examine_stack
|
|
|
|
|
absl::inlined_vector
|
|
|
|
|
absl::log_internal_proto
|
|
|
|
|
absl::strerror
|
|
|
|
|
absl::log_internal_config
|
|
|
|
|
absl::raw_hash_map
|
|
|
|
|
absl::raw_hash_set
|
|
|
|
|
absl::container_memory
|
|
|
|
|
absl::algorithm_container
|
2024-05-23 21:30:15 +00:00
|
|
|
absl::span
|
2024-07-23 17:00:36 +00:00
|
|
|
absl::log_internal_nullstream
|
|
|
|
|
absl::vlog_config_internal
|
|
|
|
|
absl::flags_reflection
|
|
|
|
|
absl::flags_internal
|
|
|
|
|
absl::flags_config
|
|
|
|
|
absl::fast_type_id
|
|
|
|
|
absl::utility
|
|
|
|
|
absl::time_zone
|
2024-05-23 21:30:15 +00:00
|
|
|
absl::civil_time
|
|
|
|
|
absl::string_view
|
Update C/C++ dependencies: abseil, date, nsync, googletest, wil, mp11, cpuinfo and safeint (#15470)
### Description
Update C/C++ dependencies abseil, date, nsync, googletest, wil, mp11,
cpuinfo and safeint to newer versions per request of @
mayeut. He created the following PRs to update the deps:
https://github.com/microsoft/onnxruntime/pull/15432
https://github.com/microsoft/onnxruntime/pull/15434
https://github.com/microsoft/onnxruntime/pull/15435
https://github.com/microsoft/onnxruntime/pull/15436
https://github.com/microsoft/onnxruntime/pull/15437
However, our build system needs to fetch the dependencies from an
internal mirror that only Microsoft employees have write access to. So I
closed his PRs and created this one.
This PR also updates abseil to a newer version. This is to prepare for
upgrading re2.
2023-09-08 20:35:04 +00:00
|
|
|
absl::throw_delegate
|
2024-07-23 17:00:36 +00:00
|
|
|
absl::memory
|
|
|
|
|
absl::charset
|
|
|
|
|
absl::endian
|
2024-09-10 23:39:27 +00:00
|
|
|
absl::config)
|