Skip to content

Commit c0eb2d1

Browse files
authored
Sanitizer build options (#34)
1 parent da5613b commit c0eb2d1

File tree

3 files changed

+63
-2
lines changed

3 files changed

+63
-2
lines changed

.github/workflows/test.yml

+17-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,16 @@ jobs:
3232
strategy:
3333
fail-fast: false
3434
matrix:
35-
os: [ubuntu-latest]
35+
os: [ubuntu-22.04]
3636
gcc_v: [9, 10, 11, 12]
37+
sanitizer: [none, asan, msan, tsan]
38+
buildtype: [debug]
39+
40+
include:
41+
- os: ubuntu-22.04
42+
gcc_v: 12
43+
sanitizer: none
44+
buildtype: release
3745

3846
env:
3947
FC: gfortran
@@ -59,6 +67,12 @@ jobs:
5967
ln -s /usr/local/bin/g++-${{ env.GCC_V }} /usr/local/bin/g++
6068
6169
- name: Install GCC (Linux)
70+
run: |
71+
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
72+
sudo apt-get update
73+
sudo apt-get install gcc-${{ env.GCC_V }} g++-${{ env.GCC_V }} gfortran-${{ env.GCC_V }}
74+
75+
- name: Set GCC Version (Linux)
6276
if: contains(matrix.os, 'ubuntu')
6377
run: >-
6478
sudo update-alternatives
@@ -76,10 +90,11 @@ jobs:
7690
- name: Configure build
7791
run: >-
7892
meson setup ${{ env.M_BUILD_DIR }}
79-
--buildtype=debug
93+
--buildtype=${{ matrix.buildtype }}
8094
--prefix=$PWD/_dist
8195
--libdir=lib
8296
--warnlevel=0
97+
-Dsanitizer=${{ matrix.sanitizer }}
8398
-Db_coverage=${{ env.COVERAGE }}
8499
env:
85100
COVERAGE: ${{ contains(matrix.os, 'ubuntu') && 'true' || 'false' }}

meson.build

+38
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,49 @@ project(
2323
meson_version: '>=0.51',
2424
default_options: [
2525
'default_library=both',
26+
'warning_level=3',
2627
],
2728
)
2829

2930
cxx = meson.get_compiler('cpp')
3031

32+
33+
if get_option('buildtype') == 'debug'
34+
add_project_arguments(
35+
[
36+
'-Wzero-as-null-pointer-constant',
37+
'-Wlogical-not-parentheses',
38+
'-Db_sanitize=address,undefined'
39+
],
40+
language: 'cpp'
41+
)
42+
43+
add_project_arguments('-fno-omit-frame-pointer', language: 'cpp')
44+
add_project_link_arguments('-fno-omit-frame-pointer', language: 'cpp')
45+
46+
sanitizer = get_option('sanitizer')
47+
if sanitizer == 'asan'
48+
message('Enabling ASan + UBSan + LSan')
49+
add_project_arguments('-Db_sanitize=address,undefined', language: 'cpp')
50+
51+
message('Adding "-fsanitize-address-use-after-scope" argument (ignore the subsequent warnings).')
52+
add_project_arguments('-fsanitize-address-use-after-scope', language: 'cpp')
53+
add_project_link_arguments('-fsanitize-address-use-after-scope', '-fno-omit-frame-pointer', language: 'cpp')
54+
55+
elif sanitizer == 'msan'
56+
message('Enabling Memory Sanitizer (MSan)')
57+
add_project_arguments('-Db_sanitize=memory', language: 'cpp')
58+
59+
elif sanitizer == 'tsan'
60+
message('Enabling Thread Sanitizer (TSan)')
61+
add_project_arguments('-Db_sanitize=thread', language: 'cpp')
62+
63+
else
64+
message('No sanitizers enabled')
65+
endif
66+
endif
67+
68+
3169
deps = []
3270
foreach lib: ['cblas', 'lapacke']
3371
this_dep = dependency(lib, required: false)

meson_options.txt

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
option(
2+
'sanitizer',
3+
type: 'combo',
4+
choices: ['none', 'asan', 'msan', 'tsan'],
5+
value: 'none',
6+
description:
7+
'Choose a set of sanitizers to enable'
8+
)

0 commit comments

Comments
 (0)