mirror of
https://github.com/kovidgoyal/kitty.git
synced 2024-11-11 01:28:19 +03:00
Build with fortify source on clang as well
This commit is contained in:
parent
1a1638cc7f
commit
64567646d9
2
setup.py
2
setup.py
@ -204,7 +204,7 @@ def init_env(
|
||||
if ccver >= (5, 0):
|
||||
df += ' -Og'
|
||||
float_conversion = '-Wfloat-conversion'
|
||||
fortify_source = '-D_FORTIFY_SOURCE=2' if cc == 'gcc' else ''
|
||||
fortify_source = '-D_FORTIFY_SOURCE=2'
|
||||
optimize = df if debug or sanitize else '-O3'
|
||||
sanitize_args = get_sanitize_args(cc, ccver) if sanitize else set()
|
||||
cppflags = os.environ.get(
|
||||
|
Loading…
Reference in New Issue
Block a user