CMake教程-第 12 步:打包调试和发布

CMake教程-第 12 步:打包调试和发布

  • 1 CMake教程介绍
  • 2 学习步骤
    • [Step 1: A Basic Starting Point](https://blog.csdn.net/u014100559/article/details/133099915?spm=1001.2014.3001.5501)
    • [Step 2: Adding a Library](https://blog.csdn.net/u014100559/article/details/133149868?spm=1001.2014.3001.5501)
    • [Step 3: Adding Usage Requirements for a Library](https://blog.csdn.net/u014100559/article/details/133281152?spm=1001.2014.3001.5501)
    • [Step 4: Adding Generator Expressions](https://blog.csdn.net/u014100559/article/details/133324929?spm=1001.2014.3001.5501)
    • [Step 5: Installing and Testing](https://blog.csdn.net/u014100559/article/details/133799788?spm=1001.2014.3001.5501)
    • [Step 6: Adding Support for a Testing Dashboard](https://blog.csdn.net/u014100559/article/details/133849508?spm=1001.2014.3001.5501)
    • [Step 7: Adding System Introspection](https://blog.csdn.net/u014100559/article/details/133896075?spm=1001.2014.3001.5501)
    • [Step 8: Adding a Custom Command and Generated File](https://blog.csdn.net/u014100559/article/details/133935961?spm=1001.2014.3001.5501)
    • [Step 9: Packaging an Installer](https://blog.csdn.net/u014100559/article/details/134023057?spm=1001.2014.3001.5501)
    • [Step 10: Selecting Static or Shared Libraries](https://blog.csdn.net/u014100559/article/details/134066467?spm=1001.2014.3001.5501)
    • [Step 11: Adding Export Configuration](https://blog.csdn.net/u014100559/article/details/134130496?spm=1001.2014.3001.5501)
    • [Step 12: Packaging Debug and Release](https://blog.csdn.net/u014100559/article/details/134256645?spm=1001.2014.3001.5501)
  • 3 Step 12: Packaging Debug and Release
    • 3.1 Step 12: Packaging Debug and Release
    • 3.2 CMakeLists.txt
    • 3.3 MathFunctions/CMakeLists.txt
    • 3.4 执行debug和release构建工作之后的生成目录结构
    • 3.5 执行cpack之后的目录结果
    • 3.6 程序运行结果

该文档是基于CMake的官方教程翻译而来,并稍微添加了自己的理解:

cmake的官方网站为:CMake Tutorial

1 CMake教程介绍

The CMake tutorial provides a step-by-step guide that covers common build system issues that CMake helps address. Seeing how various topics all work together in an example project can be very helpful.
CMake 教程提供了一个循序渐进的指南,涵盖了 CMake 可帮助解决的常见构建系统问题。在一个示例项目中了解各个主题是如何协同工作的,会非常有帮助。

2 学习步骤

The tutorial source code examples are available in this archive. Each step has its own subdirectory containing code that may be used as a starting point. The tutorial examples are progressive so that each step provides the complete solution for the previous step.
本文档中提供了教程源代码示例。每个步骤都有自己的子目录,其中包含可用作起点的代码。教程示例是循序渐进的,因此每一步都提供了前一步的完整解决方案。

Step 1: A Basic Starting Point

  • Exercise 1 - Building a Basic Project
  • Exercise 2 - Specifying the C++ Standard
  • Exercise 3 - Adding a Version Number and Configured Header File

Step 2: Adding a Library

  • Exercise 1 - Creating a Library
  • Exercise 2 - Adding an Option

Step 3: Adding Usage Requirements for a Library

  • Exercise 1 - Adding Usage Requirements for a Library
  • Exercise 2 - Setting the C++ Standard with Interface Libraries

Step 4: Adding Generator Expressions

  • Exercise 1 - Adding Compiler Warning Flags with Generator Expressions

Step 5: Installing and Testing

  • Exercise 1 - Install Rules
  • Exercise 2 - Testing Support

Step 6: Adding Support for a Testing Dashboard

  • Exercise 1 - Send Results to a Testing Dashboard

Step 7: Adding System Introspection

  • Exercise 1 - Assessing Dependency Availability

Step 8: Adding a Custom Command and Generated File

Step 9: Packaging an Installer

Step 10: Selecting Static or Shared Libraries

Step 11: Adding Export Configuration

Step 12: Packaging Debug and Release

3 Step 12: Packaging Debug and Release

3.1 Step 12: Packaging Debug and Release

Note: This example is valid for single-configuration generators and will not work for multi-configuration generators (e.g. Visual Studio).
注:本例适用于单配置生成器,不适用于多配置生成器(如 Visual Studio)。

By default, CMake’s model is that a build directory only contains a single configuration, be it Debug, Release, MinSizeRel, or RelWithDebInfo. It is possible, however, to setup CPack to bundle multiple build directories and construct a package that contains multiple configurations of the same project.
默认情况下,CMake 的模型是一个联编目录只包含一个配置,无论是 Debug、Release、MinSizeRel 还是 RelWithDebInfo。不过,可以通过设置 CPack 来捆绑多个编译目录,并构建一个包含同一项目多个配置的软件包。

First, we want to ensure that the debug and release builds use different names for the libraries that will be installed. Let’s use d as the postfix for the debug libraries.
首先,我们要确保调试版本和发行版本使用不同的名称来命名将要安装的库。让我们使用 d 作为调试库的后缀。

Set CMAKE_DEBUG_POSTFIX near the beginning of the top-level CMakeLists.txt file:
在顶层 CMakeLists.txt 文件的开头附近设置 CMAKE_DEBUG_POSTFIX

CMakeLists.txt
set(CMAKE_DEBUG_POSTFIX d)add_library(tutorial_compiler_flags INTERFACE)

And the DEBUG_POSTFIX property on the tutorial executable:
以及tutorial可执行文件的 DEBUG_POSTFIX 属性:

CMakeLists.txt
add_executable(Tutorial tutorial.cxx)
set_target_properties(Tutorial PROPERTIES DEBUG_POSTFIX ${CMAKE_DEBUG_POSTFIX})target_link_libraries(Tutorial PUBLIC MathFunctions tutorial_compiler_flags)

Let’s also add version numbering to the MathFunctions library. In MathFunctions/CMakeLists.txt, set the VERSION and SOVERSION properties:
我们还要为 MathFunctions 库添加版本号。在 MathFunctions/CMakeLists.txt 中,设置 VERSIONSOVERSION 属性:

MathFunctions/CMakeLists.txt
set_property(TARGET MathFunctions PROPERTY VERSION "1.0.0")
set_property(TARGET MathFunctions PROPERTY SOVERSION "1")

From the Step12 directory, create debug and release subdirectories. The layout will look like:
从 Step12_build 目录创建调试和发布子目录。布局如下

- mkdir Step12_build
- Step12_build- debug- release

Now we need to setup debug and release builds. We can use CMAKE_BUILD_TYPE to set the configuration type:
现在我们需要设置debug和release版本。我们可以使用 CMAKE_BUILD_TYPE 来设置配置类型:

cd Step12_build
cd debug
cmake -DCMAKE_BUILD_TYPE=Debug ../../Step12
cmake --build .
cd ../release
cmake -DCMAKE_BUILD_TYPE=Release ../../Step12
cmake --build .

Now that both the debug and release builds are complete, we can use a custom configuration file to package both builds into a single release. In the Step12 directory, create a file called MultiCPackConfig.cmake. In this file, first include the default configuration file that was created by the cmake executable.
现在debug和release版本都已完成,我们可以使用用户自定义配置文件将两个版本打包成一个发布版本。在 Step12 目录中,创建一个名为 MultiCPackConfig.cmake 的文件。在该文件中,首先包含 cmake 可执行文件创建的默认配置文件。

Next, use the CPACK_INSTALL_CMAKE_PROJECTS variable to specify which projects to install. In this case, we want to install both debug and release.
接下来,使用 CPACK_INSTALL_CMAKE_PROJECTS 变量指定要安装的项目。在本例中,我们要同时安装debug和release版本。

MultiCPackConfig.cmake
include("release/CPackConfig.cmake")set(CPACK_INSTALL_CMAKE_PROJECTS"debug;Tutorial;ALL;/""release;Tutorial;ALL;/")

From the Step12_build directory, run cpack specifying our custom configuration file with the config option:
在 Step12_build 目录下运行 cpack,使用 config 选项指定我们的自定义配置文件:

cpack --config ../Step12/MultiCPackConfig.cmake

3.2 CMakeLists.txt

cmake_minimum_required(VERSION 3.15)# set the project name and version
project(Tutorial VERSION 1.0)set(CMAKE_DEBUG_POSTFIX d)add_library(tutorial_compiler_flags INTERFACE)
target_compile_features(tutorial_compiler_flags INTERFACE cxx_std_11)# add compiler warning flags just when building this project via
# the BUILD_INTERFACE genex
set(gcc_like_cxx "$<COMPILE_LANG_AND_ID:CXX,ARMClang,AppleClang,Clang,GNU,LCC>")
set(msvc_cxx "$<COMPILE_LANG_AND_ID:CXX,MSVC>")
target_compile_options(tutorial_compiler_flags INTERFACE"$<${gcc_like_cxx}:$<BUILD_INTERFACE:-Wall;-Wextra;-Wshadow;-Wformat=2;-Wunused>>""$<${msvc_cxx}:$<BUILD_INTERFACE:-W3>>"
)# control where the static and shared libraries are built so that on windows
# we don't need to tinker with the path to run the executable
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR}")
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR}")
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR}")option(BUILD_SHARED_LIBS "Build using shared libraries" ON)if(APPLE)set(CMAKE_INSTALL_RPATH "@executable_path/../lib")
elseif(UNIX)set(CMAKE_INSTALL_RPATH "$ORIGIN/../lib")
endif()# configure a header file to pass the version number only
configure_file(TutorialConfig.h.in TutorialConfig.h)# add the MathFunctions library
add_subdirectory(MathFunctions)# add the executable
add_executable(Tutorial tutorial.cxx)
set_target_properties(Tutorial PROPERTIES DEBUG_POSTFIX ${CMAKE_DEBUG_POSTFIX})
target_link_libraries(Tutorial PUBLIC MathFunctions tutorial_compiler_flags)# add the binary tree to the search path for include files
# so that we will find TutorialConfig.h
target_include_directories(Tutorial PUBLIC"${PROJECT_BINARY_DIR}")# add the install targets
install(TARGETS Tutorial DESTINATION bin)
install(FILES "${PROJECT_BINARY_DIR}/TutorialConfig.h"DESTINATION include)# enable testing
enable_testing()# does the application run
add_test(NAME Runs COMMAND Tutorial 25)# does the usage message work?
add_test(NAME Usage COMMAND Tutorial)
set_tests_properties(UsagePROPERTIES PASS_REGULAR_EXPRESSION "Usage:.*number")# define a function to simplify adding tests
function(do_test target arg result)add_test(NAME Comp${arg} COMMAND ${target} ${arg})set_tests_properties(Comp${arg}PROPERTIES PASS_REGULAR_EXPRESSION ${result})
endfunction()# do a bunch of result based tests
do_test(Tutorial 4 "4 is 2")
do_test(Tutorial 9 "9 is 3")
do_test(Tutorial 5 "5 is 2.236")
do_test(Tutorial 7 "7 is 2.645")
do_test(Tutorial 25 "25 is 5")
do_test(Tutorial -25 "-25 is (-nan|nan|0)")
do_test(Tutorial 0.0001 "0.0001 is 0.01")# setup installer
include(InstallRequiredSystemLibraries)
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/License.txt")
set(CPACK_PACKAGE_VERSION_MAJOR "${Tutorial_VERSION_MAJOR}")
set(CPACK_PACKAGE_VERSION_MINOR "${Tutorial_VERSION_MINOR}")
include(CPack)# install the configuration targets
install(EXPORT MathFunctionsTargetsFILE MathFunctionsTargets.cmakeDESTINATION lib/cmake/MathFunctions
)include(CMakePackageConfigHelpers)
# generate the config file that includes the exports
configure_package_config_file(${CMAKE_CURRENT_SOURCE_DIR}/Config.cmake.in"${CMAKE_CURRENT_BINARY_DIR}/MathFunctionsConfig.cmake"INSTALL_DESTINATION "lib/cmake/example"NO_SET_AND_CHECK_MACRONO_CHECK_REQUIRED_COMPONENTS_MACRO)
# generate the version file for the config file
write_basic_package_version_file("${CMAKE_CURRENT_BINARY_DIR}/MathFunctionsConfigVersion.cmake"VERSION "${Tutorial_VERSION_MAJOR}.${Tutorial_VERSION_MINOR}"COMPATIBILITY AnyNewerVersion
)# install the generated configuration files
install(FILES${CMAKE_CURRENT_BINARY_DIR}/MathFunctionsConfig.cmake${CMAKE_CURRENT_BINARY_DIR}/MathFunctionsConfigVersion.cmakeDESTINATION lib/cmake/MathFunctions)# generate the export targets for the build tree
# needs to be after the install(TARGETS) command
export(EXPORT MathFunctionsTargetsFILE "${CMAKE_CURRENT_BINARY_DIR}/MathFunctionsTargets.cmake"
)

3.3 MathFunctions/CMakeLists.txt

# add the library that runs
add_library(MathFunctions MathFunctions.cxx)# state that anybody linking to us needs to include the current source dir
# to find MathFunctions.h, while we don't.
target_include_directories(MathFunctionsINTERFACE$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>$<INSTALL_INTERFACE:include>)set_property(TARGET MathFunctions PROPERTY VERSION "1.0.0")
set_property(TARGET MathFunctions PROPERTY SOVERSION "1")# should we use our own math functions
option(USE_MYMATH "Use tutorial provided math implementation" ON)
if(USE_MYMATH)target_compile_definitions(MathFunctions PRIVATE "USE_MYMATH")include(MakeTable.cmake) # generates Table.h# library that just does sqrtadd_library(SqrtLibrary STATICmysqrt.cxx${CMAKE_CURRENT_BINARY_DIR}/Table.h)# state that we depend on our binary dir to find Table.htarget_include_directories(SqrtLibrary PRIVATE${CMAKE_CURRENT_BINARY_DIR})# state that SqrtLibrary need PIC when the default is shared librariesset_target_properties(SqrtLibrary PROPERTIESPOSITION_INDEPENDENT_CODE ${BUILD_SHARED_LIBS})target_link_libraries(SqrtLibrary PUBLIC tutorial_compiler_flags)target_link_libraries(MathFunctions PRIVATE SqrtLibrary)
endif()target_link_libraries(MathFunctions PUBLIC tutorial_compiler_flags)# define the symbol stating we are using the declspec(dllexport) when
# building on windows
target_compile_definitions(MathFunctions PRIVATE "EXPORTING_MYMATH")# install libs
set(installable_libs MathFunctions tutorial_compiler_flags)
if(TARGET SqrtLibrary)list(APPEND installable_libs SqrtLibrary)
endif()
install(TARGETS ${installable_libs}EXPORT MathFunctionsTargetsDESTINATION lib)
# install include headers
install(FILES MathFunctions.h DESTINATION include)

3.4 执行debug和release构建工作之后的生成目录结构

test@test:~/sda3/work/cmake/Step12_build$ tree
.
├── debug
│   ├── CMakeCache.txt
│   ├── CMakeFiles
│   │   ├── 3.22.3
│   │   │   ├── CMakeCCompiler.cmake
│   │   │   ├── CMakeCXXCompiler.cmake
│   │   │   ├── CMakeDetermineCompilerABI_C.bin
│   │   │   ├── CMakeDetermineCompilerABI_CXX.bin
│   │   │   ├── CMakeSystem.cmake
│   │   │   ├── CompilerIdC
│   │   │   │   ├── a.out
│   │   │   │   ├── CMakeCCompilerId.c
│   │   │   │   └── tmp
│   │   │   └── CompilerIdCXX
│   │   │       ├── a.out
│   │   │       ├── CMakeCXXCompilerId.cpp
│   │   │       └── tmp
│   │   ├── cmake.check_cache
│   │   ├── CMakeDirectoryInformation.cmake
│   │   ├── CMakeOutput.log
│   │   ├── CMakeRuleHashes.txt
│   │   ├── CMakeTmp
│   │   ├── Export
│   │   │   └── lib
│   │   │       └── cmake
│   │   │           └── MathFunctions
│   │   │               ├── MathFunctionsTargets.cmake
│   │   │               └── MathFunctionsTargets-debug.cmake
│   │   ├── Makefile2
│   │   ├── Makefile.cmake
│   │   ├── progress.marks
│   │   ├── TargetDirectories.txt
│   │   └── Tutorial.dir
│   │       ├── build.make
│   │       ├── cmake_clean.cmake
│   │       ├── compiler_depend.make
│   │       ├── compiler_depend.ts
│   │       ├── DependInfo.cmake
│   │       ├── depend.make
│   │       ├── flags.make
│   │       ├── link.txt
│   │       ├── progress.make
│   │       ├── tutorial.cxx.o
│   │       └── tutorial.cxx.o.d
│   ├── cmake_install.cmake
│   ├── CPackConfig.cmake
│   ├── CPackSourceConfig.cmake
│   ├── CTestTestfile.cmake
│   ├── libMathFunctionsd.so -> libMathFunctionsd.so.1
│   ├── libMathFunctionsd.so.1 -> libMathFunctionsd.so.1.0.0
│   ├── libMathFunctionsd.so.1.0.0
│   ├── libSqrtLibraryd.a
│   ├── Makefile
│   ├── MakeTable
│   ├── MathFunctions
│   │   ├── CMakeFiles
│   │   │   ├── CMakeDirectoryInformation.cmake
│   │   │   ├── MakeTable.dir
│   │   │   │   ├── build.make
│   │   │   │   ├── cmake_clean.cmake
│   │   │   │   ├── compiler_depend.make
│   │   │   │   ├── compiler_depend.ts
│   │   │   │   ├── DependInfo.cmake
│   │   │   │   ├── depend.make
│   │   │   │   ├── flags.make
│   │   │   │   ├── link.txt
│   │   │   │   ├── MakeTable.cxx.o
│   │   │   │   ├── MakeTable.cxx.o.d
│   │   │   │   └── progress.make
│   │   │   ├── MathFunctions.dir
│   │   │   │   ├── build.make
│   │   │   │   ├── cmake_clean.cmake
│   │   │   │   ├── compiler_depend.make
│   │   │   │   ├── compiler_depend.ts
│   │   │   │   ├── DependInfo.cmake
│   │   │   │   ├── depend.make
│   │   │   │   ├── flags.make
│   │   │   │   ├── link.txt
│   │   │   │   ├── MathFunctions.cxx.o
│   │   │   │   ├── MathFunctions.cxx.o.d
│   │   │   │   └── progress.make
│   │   │   ├── progress.marks
│   │   │   └── SqrtLibrary.dir
│   │   │       ├── build.make
│   │   │       ├── cmake_clean.cmake
│   │   │       ├── cmake_clean_target.cmake
│   │   │       ├── compiler_depend.make
│   │   │       ├── compiler_depend.ts
│   │   │       ├── DependInfo.cmake
│   │   │       ├── depend.make
│   │   │       ├── flags.make
│   │   │       ├── link.txt
│   │   │       ├── mysqrt.cxx.o
│   │   │       ├── mysqrt.cxx.o.d
│   │   │       └── progress.make
│   │   ├── cmake_install.cmake
│   │   ├── Makefile
│   │   └── Table.h
│   ├── MathFunctionsConfig.cmake
│   ├── MathFunctionsConfigVersion.cmake
│   ├── MathFunctionsTargets.cmake
│   ├── TutorialConfig.h
│   └── Tutoriald
└── release├── CMakeCache.txt├── CMakeFiles│   ├── 3.22.3│   │   ├── CMakeCCompiler.cmake│   │   ├── CMakeCXXCompiler.cmake│   │   ├── CMakeDetermineCompilerABI_C.bin│   │   ├── CMakeDetermineCompilerABI_CXX.bin│   │   ├── CMakeSystem.cmake│   │   ├── CompilerIdC│   │   │   ├── a.out│   │   │   ├── CMakeCCompilerId.c│   │   │   └── tmp│   │   └── CompilerIdCXX│   │       ├── a.out│   │       ├── CMakeCXXCompilerId.cpp│   │       └── tmp│   ├── cmake.check_cache│   ├── CMakeDirectoryInformation.cmake│   ├── CMakeOutput.log│   ├── CMakeRuleHashes.txt│   ├── CMakeTmp│   ├── Export│   │   └── lib│   │       └── cmake│   │           └── MathFunctions│   │               ├── MathFunctionsTargets.cmake│   │               └── MathFunctionsTargets-release.cmake│   ├── Makefile2│   ├── Makefile.cmake│   ├── progress.marks│   ├── TargetDirectories.txt│   └── Tutorial.dir│       ├── build.make│       ├── cmake_clean.cmake│       ├── compiler_depend.make│       ├── compiler_depend.ts│       ├── DependInfo.cmake│       ├── depend.make│       ├── flags.make│       ├── link.txt│       ├── progress.make│       ├── tutorial.cxx.o│       └── tutorial.cxx.o.d├── cmake_install.cmake├── CPackConfig.cmake├── CPackSourceConfig.cmake├── CTestTestfile.cmake├── libMathFunctions.so -> libMathFunctions.so.1├── libMathFunctions.so.1 -> libMathFunctions.so.1.0.0├── libMathFunctions.so.1.0.0├── libSqrtLibrary.a├── Makefile├── MakeTable├── MathFunctions│   ├── CMakeFiles│   │   ├── CMakeDirectoryInformation.cmake│   │   ├── MakeTable.dir│   │   │   ├── build.make│   │   │   ├── cmake_clean.cmake│   │   │   ├── compiler_depend.make│   │   │   ├── compiler_depend.ts│   │   │   ├── DependInfo.cmake│   │   │   ├── depend.make│   │   │   ├── flags.make│   │   │   ├── link.txt│   │   │   ├── MakeTable.cxx.o│   │   │   ├── MakeTable.cxx.o.d│   │   │   └── progress.make│   │   ├── MathFunctions.dir│   │   │   ├── build.make│   │   │   ├── cmake_clean.cmake│   │   │   ├── compiler_depend.make│   │   │   ├── compiler_depend.ts│   │   │   ├── DependInfo.cmake│   │   │   ├── depend.make│   │   │   ├── flags.make│   │   │   ├── link.txt│   │   │   ├── MathFunctions.cxx.o│   │   │   ├── MathFunctions.cxx.o.d│   │   │   └── progress.make│   │   ├── progress.marks│   │   └── SqrtLibrary.dir│   │       ├── build.make│   │       ├── cmake_clean.cmake│   │       ├── cmake_clean_target.cmake│   │       ├── compiler_depend.make│   │       ├── compiler_depend.ts│   │       ├── DependInfo.cmake│   │       ├── depend.make│   │       ├── flags.make│   │       ├── link.txt│   │       ├── mysqrt.cxx.o│   │       ├── mysqrt.cxx.o.d│   │       └── progress.make│   ├── cmake_install.cmake│   ├── Makefile│   └── Table.h├── MathFunctionsConfig.cmake├── MathFunctionsConfigVersion.cmake├── MathFunctionsTargets.cmake├── Tutorial└── TutorialConfig.h36 directories, 170 files
test@test:~/sda3/work/cmake/Step12_build$

3.5 执行cpack之后的目录结果

test@test:~/sda3/work/cmake/Step12_build$ ls
_CPack_Packages  debug  release  Tutorial-1.0-Linux.sh  Tutorial-1.0-Linux.tar.gz  Tutorial-1.0-Linux.tar.Z
test@test:~/sda3/work/cmake/Step12_build$

3.6 程序运行结果

test@test:~/sda3/work/cmake/Step12_build$ ./debug/Tutoriald 100
Computing sqrt of 100 to be 50.5
Computing sqrt of 100 to be 26.2401
Computing sqrt of 100 to be 15.0255
Computing sqrt of 100 to be 10.8404
Computing sqrt of 100 to be 10.0326
Computing sqrt of 100 to be 10.0001
Computing sqrt of 100 to be 10
Computing sqrt of 100 to be 10
Computing sqrt of 100 to be 10
Computing sqrt of 100 to be 10
The square root of 100 is 10
test@test:~/sda3/work/cmake/Step12_build$ ./release/Tutorial 10000
Computing sqrt of 10000 to be 5000.5
Computing sqrt of 10000 to be 2501.25
Computing sqrt of 10000 to be 1252.62
Computing sqrt of 10000 to be 630.304
Computing sqrt of 10000 to be 323.084
Computing sqrt of 10000 to be 177.018
Computing sqrt of 10000 to be 116.755
Computing sqrt of 10000 to be 101.202
Computing sqrt of 10000 to be 100.007
Computing sqrt of 10000 to be 100
The square root of 10000 is 100
test@test:~/sda3/work/cmake/Step12_build$

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/132762.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【学习笔记】[COCI2018-2019#1] Teoretičar

首先&#xff0c;可以发现 C C C等于所有点度数的最大值&#xff0c;我们能用到的颜色数目为 2 x ≥ C 2^x\ge C 2x≥C。 考虑分治&#xff0c;将边集划分为 E E 1 E 2 EE_1E_2 EE1​E2​&#xff0c;使得 E 1 , E 2 E_1,E_2 E1​,E2​中点度数的最大值都不超过 2 x − 1 2^…

06.Oracle数据备份与恢复

Oracle数据备份与恢复 一、通过RMAN方式备份二、使用emp/imp和expdb/impdb工具进行备份和恢复三、使用Data guard进行备份与恢复 一、通过RMAN方式备份 通过 RMAN&#xff08;Oracle 数据库备份和恢复管理器&#xff09;方式备份 Oracle 数据库&#xff0c;可以使用以下步骤&a…

网速和带宽浅析

经常会对交换机的带宽和文件的存储的单位混淆不清&#xff0c;下面进行整理分析。 1、网速 网速是通俗的叫法&#xff0c;专业的叫法是带宽。如手机上显示的网速为2.4K/s。 带宽通常有十兆、百兆、千兆&#xff0c;即10Mbps、100Mbps、1000Mbps&#xff0c;单位为bps。 2、带…

【微服务】mysql + elasticsearch数据双写设计与实现

目录 一、前言 二、为什么使用mysqles双写 2.1 单用mysql的问题 2.2 为什么不直接使用es 2.2.1 非关系型表达 2.2.2 不支持事务 2.2.3 多字段将造成性能低下 三、mysqles双写方案设计要点 3.1 全新设计 VS 中途调整架构 3.2 全表映射 VS 关键字段存储 3.2.1 最大程度…

FPGA高端项目:图像采集+GTP+UDP架构,高速接口以太网视频传输,提供2套工程源码加QT上位机源码和技术支持

目录 1、前言免责声明本项目特点 2、相关方案推荐我这里已有的 GT 高速接口解决方案我这里已有的以太网方案 3、设计思路框架设计框图视频源选择OV5640摄像头配置及采集动态彩条视频数据组包GTP 全网最细解读GTP 基本结构GTP 发送和接收处理流程GTP 的参考时钟GTP 发送接口GTP …

js原型链

什么叫原型链 原型链是js中的核心&#xff0c;原型链将各个属性链接起来&#xff0c;在原型链上面定义&#xff0c;原型链上的其他属性能够使用&#xff0c;原型链就是保证继承 原型链区分 原型链分为显式原型和隐式原型 显式原型&#xff1a;只有函数和构建函数才有显式原型…

spring面试题笔记

SpringBoot 有几种读取配置文件的方式 1.value 必须是bean里才能生效&#xff0c;&#xff0c;final或static无法生效 2ConfigurationProperties注解 ConfigurationProperties是springboot提供读取配置文件的一个注解 注意&#xff1a; 前缀定义了哪些外部属性将绑定到类的字…

【GPT4账号】ChatGPT/GPT4科研技术应用与AI绘图及论文高效写作

2023年我们进入了AI2.0时代。微软创始人比尔盖茨称ChatGPT的出现有着重大历史意义&#xff0c;不亚于互联网和个人电脑的问世。360创始人周鸿祎认为未来各行各业如果不能搭上这班车&#xff0c;就有可能被淘汰在这个数字化时代&#xff0c;如何能高效地处理文本、文献查阅、PPT…

【左程云算法全讲2】链表、栈、队列、递归、哈希表和有序表

系列综述&#xff1a; &#x1f49e;目的&#xff1a;本系列是个人整理为了秋招面试的&#xff0c;整理期间苛求每个知识点&#xff0c;平衡理解简易度与深入程度。 &#x1f970;来源&#xff1a;材料主要源于左程云算法课程进行的&#xff0c;每个知识点的修正和深入主要参考…

day9-操作系统初始化函数init-2

1.内核如何进行多平台的适配&#xff0c;在内核中是如何认识这些板子的&#xff1f;结构体 machine_desc 2.内核启动的整体流程 3.认识一种高效的编程结构 链接脚本:vmlinux.lds.S .init.arch.info : { __arch_info_begin .; *(.arch.info.init) /…

AI:62-基于深度学习的人体CT影像肺癌的识别与分类

🚀 本文选自专栏:AI领域专栏 从基础到实践,深入了解算法、案例和最新趋势。无论你是初学者还是经验丰富的数据科学家,通过案例和项目实践,掌握核心概念和实用技能。每篇案例都包含代码实例,详细讲解供大家学习。 📌📌📌在这个漫长的过程,中途遇到了不少问题,但是…

P1993 小 K 的农场

Portal. 差分约束。 发现题中每个农场的作物数 x i x_i xi​ 要满足以下约束关系&#xff1a; { x a − x b ≥ c 1 x a − x b ≤ c 2 x a x b \begin{cases} x_a-x_b\geq c_1\\ x_a-x_b\leq c_2\\ x_ax_b \end{cases} ⎩ ⎨ ⎧​xa​−xb​≥c1​xa​−xb​≤c2​xa​xb…

【漏洞复现】Fastjson_1.2.47_rce

感谢互联网提供分享知识与智慧&#xff0c;在法治的社会里&#xff0c;请遵守有关法律法规 文章目录 1.1、漏洞描述1.2、漏洞等级1.3、影响版本1.4、漏洞复现1、基础环境2、漏洞检测3、漏洞验证 1.5、深度利用1、反弹Shell 说明内容漏洞编号漏洞名称Fastjson_1.2.47_远程执行漏…

vue:js中合并对象的方法

目前比较常用的一共有三种 1、使用object.assign() 它可以将一个或多个对象的属性复制到目标对象中&#xff0c;第一个参数就是目标对象&#xff0c;这里举个例子&#xff1a; <template><div>{{data}}</div> </template> <script> export de…

RabbitMQ(高级特性)利用限流实现不公平分发

在RabbitMQ中&#xff0c;多个消费者监听同一条队列&#xff0c;则队列默认采用的轮询分发。但是在某种场景下这种策略并不是很好&#xff0c;例如消费者1处理任务的速度非常快&#xff0c;而其他消费者处理速度却很慢。此时如果采用公平分发&#xff0c;则消费者1有很大一部分…

uniapp 离线打包 ios umeng友盟统计

参考 关于uniapp 集成友盟统计&#xff0c;离线SDK打包问题&#xff08;避坑&#xff09; - DCloud问答

劲升逻辑与安必快、鹏海运于进博会签署合作协议,助力大湾区外贸高质量发展

新中经贸与投资论坛签约现场 中国上海&#xff0c;2023 年 11 月 6 日——第六届进博会期间&#xff0c;由新加坡工商联合总会主办的新中经贸与投资论坛在上海同期举行。跨境贸易数字化领域的领导者劲升逻辑与安必快科技&#xff08;深圳&#xff09;有限公司&#xff08;简称…

如何正确清理DNS缓存

前言 有些场景&#xff0c;需要刷新自己本机的DNS缓存&#xff0c;比如说某个cdn访问不到&#xff0c;某个网络不通等等&#xff0c;都有可能是由于DNS缓存记录了错误的ip映射关系而导致的。本文介绍下如何刷新本机的DNS缓存。 Mac 如果你是mac用户&#xff0c;执行以下操作…

Webpack的Tree Shaking。它的作用是什么?

聚沙成塔每天进步一点点 ⭐ 专栏简介 前端入门之旅&#xff1a;探索Web开发的奇妙世界 欢迎来到前端入门之旅&#xff01;感兴趣的可以订阅本专栏哦&#xff01;这个专栏是为那些对Web开发感兴趣、刚刚踏入前端领域的朋友们量身打造的。无论你是完全的新手还是有一些基础的开发…

猫罐头怎么选?5款不踩雷的猫罐头推荐!

在我们的日常生活中&#xff0c;猫罐头是一种常见的宠物食品&#xff0c;但是有很多养猫的铲屎官都不知道应该如何为猫咪挑选一款合适且满意的猫罐头。作为经营一家宠物店7年的店长&#xff0c;我店里的猫猫最多的时候可以达到60多只&#xff0c;这些年来它们也吃过了很多种类的…