diff options
author | Leonardo Hernández Hernández <leohdz172@proton.me> | 2024-08-01 20:38:57 -0600 |
---|---|---|
committer | Leonardo Hernández Hernández <leohdz172@proton.me> | 2024-08-01 22:41:00 -0600 |
commit | d136dadf456250f9a4cef23abd1fdf21518a31ba (patch) | |
tree | e4969d61eaf7239b9450cd830947e4f72843c723 /config.mk | |
parent | 672b4c405d5207cadc572190affbe41e653e7a8c (diff) | |
download | dwl-d136dadf456250f9a4cef23abd1fdf21518a31ba.tar.gz |
`-pedantic` -> `-Wpedantic`
Bug: https://codeberg.org/dwl/dwl/issues/584
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -14,4 +14,7 @@ XLIBS = #XWAYLAND = -DXWAYLAND #XLIBS = xcb xcb-icccm -CC = gcc +# dwl itself only uses C99 features, but wlroots' headers use anonymous unions (C11). +# To avoid warnings about them, we do not use -std=c99 and instead of using the +# gmake default 'CC=c99', we use cc. +CC = cc |