Browse Source

Eliminate Wuninitialized for Clang/LLVM (#266)

pull/268/head
Zenithal 4 years ago
committed by GitHub
parent
commit
90191ad93e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      configure.ac

2
configure.ac

@ -91,7 +91,7 @@ AS_IF([test "x$enable_print_device_tree" = "xyes"], [
AC_DEFINE([PK_PRINT_DEVICE_TREE],,[Define if the DTS is to be displayed])
])
CFLAGS="-Wall -Werror -D__NO_INLINE__ -mcmodel=medany -O2 -std=gnu99 -Wno-unused -Wno-attributes -fno-delete-null-pointer-checks -fno-PIE"
CFLAGS="-Wall -Werror -D__NO_INLINE__ -mcmodel=medany -O2 -std=gnu99 -Wno-unused -Wno-attributes -Wno-uninitialized -fno-delete-null-pointer-checks -fno-PIE"
LDFLAGS="$LDFLAGS -Wl,--build-id=none"
AC_SUBST(CFLAGS)

Loading…
Cancel
Save