mirror of
https://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git
synced 2024-11-14 14:33:50 +08:00
6091dae925
With the sanitizers supported in both gcc + clang and all the issues resolved, let's enable them via build-dev.ini. This means, developers will see any issues OOTB without having to run through the CI. As a nice bonus, let's re-enable them for ubuntu:22.04 - it should be working fine now. Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> Link: https://github.com/kmod-project/kmod/pull/172 Signed-off-by: Lucas De Marchi <lucas.de.marchi@gmail.com>
19 lines
430 B
INI
19 lines
430 B
INI
; SPDX-FileCopyrightText: 2024 Emil Velikov <emil.l.velikov@gmail.com>
|
|
; SPDX-FileCopyrightText: 2024 Lucas De Marchi <lucas.de.marchi@gmail.com>
|
|
;
|
|
; SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
[project options]
|
|
build-tests = true
|
|
debug-messages = true
|
|
docs = true
|
|
zstd = 'enabled'
|
|
xz = 'enabled'
|
|
zlib = 'enabled'
|
|
openssl = 'enabled'
|
|
werror = true
|
|
b_sanitize = 'address,undefined'
|
|
|
|
[built-in options]
|
|
buildtype = 'debugoptimized'
|