changeset 166:78ea8d5ccc87

[ThirdParty] Added sqlite3 to the third_party.
author MrJuneJune <me@mrjunejune.com>
date Mon, 19 Jan 2026 16:28:34 -0800
parents ce05514681c6
children 589bab390fb4
files third_party/bun/BUILD third_party/raylib/raylib.bzl
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/third_party/bun/BUILD	Mon Jan 19 05:40:22 2026 -0800
+++ b/third_party/bun/BUILD	Mon Jan 19 16:28:34 2026 -0800
@@ -16,6 +16,7 @@
   src_folder = "bun-darwin-aarch64/bun",
   target_compatible_with = [
     "@platforms//os:osx",
+    "@platforms//cpu:arm64",
   ],
   visibility = ["//visibility:public"],
 )
@@ -26,6 +27,7 @@
   src_folder = "bun-linux-x64/bun",
   target_compatible_with = [
     "@platforms//os:linux",
+    "@platforms//cpu:x86_64",
   ],
   visibility = ["//visibility:public"],
 )
@@ -37,6 +39,7 @@
   src_folder = "bun-linux-aarch64/bun",
   target_compatible_with = [
     "@platforms//os:linux",
+    "@platforms//cpu:arm64",
   ],
   visibility = ["//visibility:public"],
 )
--- a/third_party/raylib/raylib.bzl	Mon Jan 19 05:40:22 2026 -0800
+++ b/third_party/raylib/raylib.bzl	Mon Jan 19 16:28:34 2026 -0800
@@ -14,7 +14,6 @@
           "-framework OpenGL",
         ],
         linkopts_linux = [
-          "-lGL",
           "-lm",
           "-lpthread",
           "-ldl",