diff options
author | 2024-04-15 05:34:44 +0000 | |
---|---|---|
committer | 2024-04-15 05:34:44 +0000 | |
commit | c0df1afc072373446e204ff3e471abb25dd9175c (patch) | |
tree | b3320fc5d740a1cb194846f4da07a880616b1c0f /cc/sabi.go | |
parent | 06485000dba6d86652c1a67d8a609adc886f844d (diff) | |
parent | 5f228b0c136672f96b04a3e9de9499904dcfa18a (diff) |
Merge "Pass system include dirs to header ABI checker" into main
Diffstat (limited to 'cc/sabi.go')
-rw-r--r-- | cc/sabi.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cc/sabi.go b/cc/sabi.go index af2672634..ef43c8daf 100644 --- a/cc/sabi.go +++ b/cc/sabi.go @@ -92,7 +92,8 @@ type SAbiProperties struct { // Include directories that may contain ABI information exported by a library. // These directories are passed to the header-abi-dumper. - ReexportedIncludes []string `blueprint:"mutated"` + ReexportedIncludes []string `blueprint:"mutated"` + ReexportedSystemIncludes []string `blueprint:"mutated"` } type sabi struct { |