Skip to content

Commit 9b95e10

Browse files
authored
[LLDB] [Tests] Downgrade -Wincompatible-pointer-types to a warning in some tests (#158756)
These no longer compile because the warning now defaults to an error after #157364, so downgrade the error to a warning for now; I’m not familiar enough with either LLDB or MacOS to fix these warnings properly (assuming they’re unintended).
1 parent 40886fb commit 9b95e10

File tree

2 files changed

+2
-2
lines changed
  • lldb/test/API
    • functionalities/data-formatter/data-formatter-objc
    • macosx/ignore_exceptions

2 files changed

+2
-2
lines changed

lldb/test/API/functionalities/data-formatter/data-formatter-objc/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
OBJC_SOURCES := main.m
22

3-
CFLAGS_EXTRAS := -w
3+
CFLAGS_EXTRAS := -w -Wno-error=incompatible-pointer-types
44

55

66

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
C_SOURCES := main.c
2-
CFLAGS_EXTRAS := -std=c99
2+
CFLAGS_EXTRAS := -std=c99 -Wno-error=incompatible-pointer-types
33

44
include Makefile.rules

0 commit comments

Comments
 (0)