mirror of
https://git.freebsd.org/ports.git
synced 2025-05-07 19:30:46 -04:00
Build cross platform desktop apps with JavaScript, HTML, and CSS. It's easier than you think. If you can build a website, you can build a desktop app. Electron is a framework for creating native applications with web technologies like JavaScript, HTML, and CSS. It takes care of the hard parts so you can focus on the core of your application. WWW: https://electronjs.org/
16 lines
595 B
Text
16 lines
595 B
Text
--- build/config/clang/BUILD.gn.orig 2025-01-27 17:37:37 UTC
|
|
+++ build/config/clang/BUILD.gn
|
|
@@ -213,7 +213,12 @@ clang_lib("compiler_builtins") {
|
|
|
|
# Adds a dependency on the Clang runtime library clang_rt.builtins.
|
|
clang_lib("compiler_builtins") {
|
|
- if (is_mac) {
|
|
+ if (is_bsd) {
|
|
+ # Since there's no Rust in the toolchain, there's no concern that we'll use
|
|
+ # the Rust stdlib's intrinsics here.
|
|
+ #
|
|
+ # Don't define libname which makes this target do nothing.
|
|
+ } else if (is_mac) {
|
|
libname = "osx"
|
|
} else if (is_ios) {
|
|
if (target_environment == "simulator") {
|