From 9aacd91fd22bbadf69528af97e5bad20edd9634d Mon Sep 17 00:00:00 2001 From: Laurenz Date: Tue, 19 Dec 2023 09:22:24 +0100 Subject: [PATCH] Add `-pthread` --- third_party/squashfs-tools.BUILD | 1 + 1 file changed, 1 insertion(+) diff --git a/third_party/squashfs-tools.BUILD b/third_party/squashfs-tools.BUILD index ffc3cbe..34feb7a 100644 --- a/third_party/squashfs-tools.BUILD +++ b/third_party/squashfs-tools.BUILD @@ -3,6 +3,7 @@ load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library") _COPTS = [ "-O2", # squashfs-tools/Makefile#L219 "-std=gnu17", # GNU extensions are at play + "-pthread", "--no-warnings", # We don't care about third-party warnings ]