mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-16 21:00:14 +00:00
### Changes
1. CMake option `onnxruntime_USE_VCPKG`. It will be used in the vcpkg
port
* Unit test may fail because this option leads to a mixture of
unexpected external library versions.
Especially ONNX, Protobuf, and Flatbuffers version can be different
2. Overhaul of `onnxruntime_external_deps.cmake`
* Make `FetchContent_Declare` to try `find_package`.
See
https://cmake.org/cmake/help/latest/guide/using-dependencies/index.html
* Relocated `FetchContent_Declare` and `FetchContent_MakeAvailable`(or
`onnxruntime_fetchcontent_makeavailable`) to closer lines.
It was too hard to navigate the entire file to search related
sections...
* Alias `IMPORTED` targets like build targets (e.g. `ONNX::onnx` -->
`onnx`)
```cmake
# The script uses `find_package` with the changes.
# In this case, use vcpkg to search dependencies
# See https://cmake.org/cmake/help/latest/guide/using-dependencies/index.html
include(external/onnxruntime_external_deps.cmake)
```
3. Create CMakePresets.json and presets to [run vcpkg in manifest
mode](https://learn.microsoft.com/en-us/vcpkg/concepts/manifest-mode)
* Currently, it's NOT for training build
* Main triplets are `x64-windows` and `x64-osx`
```pwsh
Push-Location "cmake"
cmake --preset "x64-windows-vcpkg"
cmake --build --preset "x64-windows-vcpkg-debug"
Pop-Location
```
```bash
pushd "cmake"
cmake --preset "x64-osx-vcpkg"
cmake --build --preset "x64-osx-vcpkg-debug"
popd
```
4. Updated tools/ci_build/build.py
* `--use_vcpkg` option: it needs `CMAKE_TOOLCHAIN_FILE` with
[vcpkg.cmake toolchain
script](https://github.com/microsoft/vcpkg/blob/master/scripts/buildsystems/vcpkg.cmake)
* `--compile_no_warning_as_error` is recommended because library version
differences will cause unexpected compiler warnings
```bash
python ./tools/ci_build/build.py \
--compile_no_warning_as_error \
--use_vcpkg \
--cmake_extra_defines "CMAKE_TOOLCHAIN_FILE:FILEPATH=${VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake" \
--cmake_extra_defines "VCPKG_TARGET_TRIPLET=..."
```
5. Created Job `Vcpkg` for Windows and macOS
* Show how to setup and use vcpkg.
Similar to the CMakePresets.json usage
### Motivation and Context
* Help #7150
* Help https://github.com/microsoft/vcpkg/pull/36850
* https://github.com/luncliff/vcpkg-registry/pull/212
* https://github.com/microsoft/vcpkg/pull/39881
* https://github.com/luncliff/vcpkg-registry/pull/215
* https://github.com/luncliff/vcpkg-registry/pull/216
* https://github.com/luncliff/vcpkg-registry/pull/227
*
https://cmake.org/cmake/help/latest/guide/using-dependencies/index.html
*
https://github.com/microsoft/vcpkg/blob/master/scripts/buildsystems/vcpkg.cmake
### Future Works?
More feature coverage with the vcpkg supported libraries
* CUDA feature support
* Training feature support
145 lines
4 KiB
CMake
145 lines
4 KiB
CMake
# 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)
|
|
set(ABSL_BUILD_TESTING OFF)
|
|
set(ABSL_BUILD_TEST_HELPERS OFF)
|
|
set(ABSL_USE_EXTERNAL_GOOGLETEST ON)
|
|
if(Patch_FOUND AND WIN32)
|
|
set(ABSL_PATCH_COMMAND ${Patch_EXECUTABLE} --binary --ignore-whitespace -p1 < ${PROJECT_SOURCE_DIR}/patches/abseil/absl_windows.patch)
|
|
else()
|
|
set(ABSL_PATCH_COMMAND "")
|
|
endif()
|
|
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()
|
|
# NB! Advancing Abseil version changes its internal namespace,
|
|
# currently absl::lts_20240116 which affects abseil-cpp.natvis debugger
|
|
# visualization file, that must be adjusted accordingly, unless we eliminate
|
|
# that namespace at build time.
|
|
FetchContent_Declare(
|
|
abseil_cpp
|
|
URL ${DEP_URL_abseil_cpp}
|
|
URL_HASH SHA1=${DEP_SHA1_abseil_cpp}
|
|
PATCH_COMMAND ${ABSL_PATCH_COMMAND}
|
|
FIND_PACKAGE_ARGS NAMES absl
|
|
)
|
|
|
|
onnxruntime_fetchcontent_makeavailable(abseil_cpp)
|
|
FetchContent_GetProperties(abseil_cpp)
|
|
set(ABSEIL_SOURCE_DIR ${abseil_cpp_SOURCE_DIR})
|
|
# abseil_cpp_SOURCE_DIR is non-empty if we build it from source
|
|
message(STATUS "Abseil source dir:" ${ABSEIL_SOURCE_DIR})
|
|
# abseil_cpp_VERSION is non-empty if we find a preinstalled ABSL
|
|
if(abseil_cpp_VERSION)
|
|
message(STATUS "Abseil version:" ${abseil_cpp_VERSION})
|
|
endif()
|
|
if (GDK_PLATFORM)
|
|
# Abseil considers any partition that is NOT in the WINAPI_PARTITION_APP a viable platform
|
|
# 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()
|
|
|
|
# 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.
|
|
set(ABSEIL_LIBS
|
|
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
|
|
absl::flags
|
|
absl::log_internal_globals
|
|
absl::kernel_timeout_internal
|
|
absl::str_format_internal
|
|
absl::hash
|
|
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
|
|
absl::optional
|
|
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
|
|
absl::raw_logging_internal
|
|
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
|
|
absl::bits
|
|
absl::flags_commandlineflag_internal
|
|
absl::hash_container_defaults
|
|
absl::numeric_representation
|
|
absl::node_slot_policy
|
|
absl::core_headers
|
|
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
|
|
absl::span
|
|
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
|
|
absl::civil_time
|
|
absl::string_view
|
|
absl::throw_delegate
|
|
absl::memory
|
|
absl::charset
|
|
absl::endian
|
|
absl::config)
|