diff options
Diffstat (limited to 'rust/bindgen.go')
| -rw-r--r-- | rust/bindgen.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rust/bindgen.go b/rust/bindgen.go index 7cc0fc829..35a807bfd 100644 --- a/rust/bindgen.go +++ b/rust/bindgen.go @@ -258,5 +258,6 @@ func (b *bindgenDecorator) SourceProviderDeps(ctx DepsContext, deps Deps) Deps { deps.SharedLibs = append(deps.SharedLibs, b.ClangProperties.Shared_libs...) deps.StaticLibs = append(deps.StaticLibs, b.ClangProperties.Static_libs...) + deps.HeaderLibs = append(deps.StaticLibs, b.ClangProperties.Header_libs...) return deps } |