]> gitweb.michael.orlitzky.com - libsvgtiny.git/commit
Makefile: drop -pedantic from CFLAGS
authorMichael Orlitzky <michael@orlitzky.com>
Sat, 7 Jun 2025 17:07:16 +0000 (13:07 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Sun, 8 Jun 2025 02:18:20 +0000 (22:18 -0400)
commite1efbe18292c7176ca1ef35509c5f1263a4c354b
tree5cb736d7c66fc24390f13ac75096246395fc6468
parent8b4fe70a2a3767249abf5abfb8e0db2a9e5749f8
Makefile: drop -pedantic from CFLAGS

With -pedantic enabled, -Werror causes build failures when we try to
call lwc_string_ref(). For example,

  src/svgtiny_css.c:120:9: error: use of GNU statement expression
  extension from macro expansion [-Werror,
  -Wgnu-statement-expression-from-macro-expansion]
  120 |         *abs = lwc_string_ref(rel);

will happen in the very next commit.
Makefile