File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed
Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -580,7 +580,6 @@ if(MDBX_BUILD_CXX)
580580 message (STATUS "Use C${MDBX_C_STANDARD} and C++${MDBX_CXX_STANDARD} for libmdbx" )
581581 list (APPEND LIBMDBX_PUBLIC_HEADERS mdbx.h++)
582582 list (APPEND LIBMDBX_SOURCES "${MDBX_SOURCE_DIR} /mdbx.c++" mdbx.h++)
583- set_source_files_properties ("${MDBX_SOURCE_DIR} /mdbx.c++" PROPERTIES COMPILE_OPTIONS "-save-temps" )
584583else ()
585584 message (STATUS "Use C${MDBX_C_STANDARD} for libmdbx but C++ portion is disabled" )
586585endif ()
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ function default_build {
5050 echo " NINJA: $( which ninja 2> /dev/null) => $( ninja --version | head -1) "
5151 cmake_use_ninja=" -G Ninja"
5252 fi
53- " ${CMAKE} " ${cmake_use_ninja} " ${config_args[@]+" ${config_args[@]} " } " .. && " ${CMAKE} " --build . " ${build_args[@]+" ${build_args[@]} " } "
53+ " ${CMAKE} " ${cmake_use_ninja} " ${config_args[@]+" ${config_args[@]} " } " .. && " ${CMAKE} " --build . --verbose " ${build_args[@]+" ${build_args[@]} " } "
5454}
5555
5656function default_ci {
Original file line number Diff line number Diff line change @@ -968,9 +968,9 @@ macro(setup_compile_flags)
968968
969969 if (CMAKE_COMPILER_IS_GNUCC AND LTO_ENABLED)
970970 add_compile_flags("C;CXX" ${GCC_LTO_CFLAGS} )
971- set (EXE_LINKER_FLAGS "${EXE_LINKER_FLAGS} ${GCC_LTO_CFLAGS} -fverbose-asm -fwhole-program" )
972- set (SHARED_LINKER_FLAGS "${SHARED_LINKER_FLAGS} ${GCC_LTO_CFLAGS} -fverbose-asm" )
973- set (MODULE_LINKER_FLAGS "${MODULE_LINKER_FLAGS} ${GCC_LTO_CFLAGS} -fverbose-asm" )
971+ # set(EXE_LINKER_FLAGS "${EXE_LINKER_FLAGS} ${GCC_LTO_CFLAGS} -fverbose-asm -fwhole-program")
972+ # set(SHARED_LINKER_FLAGS "${SHARED_LINKER_FLAGS} ${GCC_LTO_CFLAGS} -fverbose-asm")
973+ # set(MODULE_LINKER_FLAGS "${MODULE_LINKER_FLAGS} ${GCC_LTO_CFLAGS} -fverbose-asm")
974974 if (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 5)
975975 # Pass the same optimization flags to the linker
976976 set (compile_flags "${CMAKE_C_FLAGS} ${CMAKE_C_FLAGS_${CMAKE_BUILD_TYPE_UPPERCASE} }" )
You can’t perform that action at this time.
0 commit comments