This implements the proposal from #124512. For that it contains the following changes: * Remove the global override of `new`/`delete` when `WITH_CXX_GUARDEDALLOC` was enabled. * Always use `MEM_CXX_CLASS_ALLOC_FUNCS` where it is currently used. This used to be guarded by `WITH_CXX_GUARDEDALLOC` in some but not all cases. This means that a few classes which didn't use our guarded allocator by default before, are now using it. Pull Request: https://projects.blender.org/blender/blender/pulls/130181
29 lines
1.2 KiB
CMake
29 lines
1.2 KiB
CMake
# SPDX-FileCopyrightText: 2019-2023 Blender Authors
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
# Configuration for developers, with faster builds, error checking and tests.
|
|
#
|
|
# Example usage:
|
|
# cmake -C../blender/build_files/cmake/config/blender_developer.cmake ../blender
|
|
#
|
|
|
|
set(WITH_ASSERT_ABORT ON CACHE BOOL "" FORCE)
|
|
set(WITH_ASSERT_RELEASE ON CACHE BOOL "" FORCE)
|
|
set(WITH_BUILDINFO OFF CACHE BOOL "" FORCE)
|
|
# Sadly ASAN is more often broken than working with MSVC do not enable it in the
|
|
# developer profile for now.
|
|
if(NOT WIN32)
|
|
set(WITH_COMPILER_ASAN ON CACHE BOOL "" FORCE)
|
|
set(WITH_STRSIZE_DEBUG ON CACHE BOOL "" FORCE)
|
|
endif()
|
|
set(WITH_CYCLES_NATIVE_ONLY ON CACHE BOOL "" FORCE)
|
|
set(WITH_DOC_MANPAGE OFF CACHE BOOL "" FORCE)
|
|
set(WITH_GTESTS ON CACHE BOOL "" FORCE)
|
|
set(WITH_GPU_RENDER_TESTS_SILENT OFF CACHE BOOL "" FORCE)
|
|
set(WITH_LIBMV_SCHUR_SPECIALIZATIONS OFF CACHE BOOL "" FORCE)
|
|
set(WITH_PYTHON_SAFETY ON CACHE BOOL "" FORCE)
|
|
if(WIN32)
|
|
set(WITH_WINDOWS_BUNDLE_CRT OFF CACHE BOOL "" FORCE)
|
|
endif()
|