Skip to content
Snippets Groups Projects
Commit cbd7e6a6 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

On OSX, don't set -DBZ_DEBUG as that does not work well with gcc-4.2.1/clang

parent 7eaa91db
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -24,7 +24,11 @@ class EnvironmentWrapper(object):
"""
# 30.01.2017: we only set debug flags, release flags are set by toolchain
DEBUG_CFLAGS = '-O0 -g -DBOB_DEBUG -DBZ_DEBUG'
DEBUG_CFLAGS = '-O0 -g -DBOB_DEBUG'
# Note: CLang does not work well with BZ_DEBUG
if platform.system() != 'Darwin':
DEBUG_FLAGS += " -DBZ_DEBUG"
def __init__(self, logger, debug=None, prefixes=None, environ=None):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment