Skip to content

Commit

Permalink
Add NDEBUG flag to meson builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Micket committed Oct 1, 2024
1 parent 17909f2 commit 4db35a4
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions easybuild/easyblocks/generic/mesonninja.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ def build_type(self):
# While we do set optimization and debug flag separately, build scripts may be adding additional
# defines and flags based on the build_type as well so we pick the closest match.
if build_type is None:
if self.toolchain.options.get('noopt', None): # also implies debug but is the closest match
if self.toolchain.options.get('noopt', False): # also implies debug but is the closest match
build_type = 'debug'
elif self.toolchain.options.get('debug', None):
elif self.toolchain.options.get('debug', False):
build_type = 'debugoptimized'
else:
build_type = 'release'
Expand Down Expand Up @@ -121,7 +121,7 @@ def configure_step(self, cmd_prefix=''):
build_dir = self.cfg.get('build_dir') or self.start_dir

cmd = ("%(preconfigopts)s %(configure_cmd)s --prefix %(installdir)s --buildtype %(buildtype)s %(configopts)s "
"--optimization %(optimization)s %(debug)s %(source_dir)s") % {
"--optimization %(optimization)s %(debug)s %(source_dir)s %(ndebug)s") % {
'configopts': self.cfg['configopts'],
'configure_cmd': configure_cmd,
'installdir': self.installdir,
Expand All @@ -130,6 +130,7 @@ def configure_step(self, cmd_prefix=''):
'buildtype': self.build_type,
'optimization': self.optimization,
'debug': '--debug' if self.toolchain.options.get('debug', False) else '',
'ndebug': '' if self.toolchain.options.get('noopt', False) else '-Db_ndebug=true'
}
res = run_shell_cmd(cmd)
return res.output
Expand All @@ -144,7 +145,7 @@ def build_step(self, verbose=False, path=None):
if self.cfg['parallel']:
parallel = "-j %s" % self.cfg['parallel']

cmd = "%(prebuildopts)s %(build_cmd)s %(parallel)s %(buildopts)s" % {
cmd = "%(prebuildopts)s %(build_cmd)s -v %(parallel)s %(buildopts)s" % {
'buildopts': self.cfg['buildopts'],
'build_cmd': build_cmd,
'parallel': parallel,
Expand Down

0 comments on commit 4db35a4

Please sign in to comment.