cb1b430251
* General logging updates
* ROCm 6.1.x fatal defect: unconditional abort if tool found but rocprofiler-sdk missing
- Adding rocprofiler-sdk support breaks backwards compatibility in ROCm 6.1.x because `rocprofiler_configure` symbol triggers looking for rocprofiler-sdk library (which was not released until ROCm 6.2)
- Bump version to 0.5.0
* revert to using fatal error
* Include header updates
* Fix CodeQL suggestions
* CMake and CI updates
- minimum cmake version is 3.22.0
- added requirements.txt
- improved rocprofiler_register_{formatting,linting}.cmake
* Disable deprecated declarations warnings
* Use "overwrite" instead of "override"
- override is a keyword in C++
* Disable REQUIRED for formatting and linting when BUILD_DEVELOPER=ON
---------
Co-authored-by: Jonathan R. Madsen <jonathanrmadsen@gmail.com>
38 خطوط
1.1 KiB
CMake
38 خطوط
1.1 KiB
CMake
set(BUILD_TESTING OFF)
|
|
set(BUILD_SHARED_LIBS OFF)
|
|
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
|
set(CMAKE_INSTALL_DEFAULT_COMPONENT_NAME external)
|
|
|
|
if(ROCPROFILER_REGISTER_BUILD_GLOG)
|
|
# checkout submodule if not already checked out or clone repo if no .gitmodules file
|
|
rocprofiler_register_checkout_git_submodule(
|
|
RECURSIVE
|
|
RELATIVE_PATH glog
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR}
|
|
REPO_URL https://github.com/google/glog.git
|
|
REPO_BRANCH "master")
|
|
|
|
# May want to use GFLAGS in the future
|
|
set(WITH_GFLAGS OFF)
|
|
set(WITH_GTEST OFF)
|
|
set(WITH_UNWIND "none")
|
|
add_subdirectory(glog EXCLUDE_FROM_ALL)
|
|
else()
|
|
find_package(glog REQUIRED)
|
|
endif()
|
|
|
|
if(ROCPROFILER_REGISTER_BUILD_FMT)
|
|
# checkout submodule if not already checked out or clone repo if no .gitmodules file
|
|
rocprofiler_register_checkout_git_submodule(
|
|
RECURSIVE
|
|
RELATIVE_PATH fmt
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR}
|
|
REPO_URL https://github.com/fmtlib/fmt.git
|
|
REPO_BRANCH "master")
|
|
|
|
set(FMT_TEST OFF)
|
|
add_subdirectory(fmt EXCLUDE_FROM_ALL)
|
|
else()
|
|
find_package(fmt REQUIRED)
|
|
endif()
|