Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion foreign_cc/built_tools/pkgconfig_build.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def _pkgconfig_tool_impl(ctx):
frozen_arflags = flags_info.cxx_linker_static

cc_path = tools_info.cc
cflags = flags_info.cc + ["-Wno-int-conversion"] # Fix building with clang 15+
cflags = flags_info.cc + ["-Wno-int-conversion", "-std=gnu90"] # Fix building with clang 15+
sysroot_cflags = extract_sysroot_flags(cflags)
non_sysroot_cflags = extract_non_sysroot_flags(cflags)

Expand Down