summary refs log tree commit diff
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-05-16 19:44:49 +0300
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2023-05-16 19:44:49 +0300
commitb1c83f9f0110e704e2bd7abf11dab911b639726b (patch)
treefbe1001c6ce6f2e5160a47b2290c4be9622d6489
parent1fed46780de6d76c171e9ea70aa681f0c13fc949 (diff)
downloadnixpkgs-b1c83f9f0110e704e2bd7abf11dab911b639726b.tar
nixpkgs-b1c83f9f0110e704e2bd7abf11dab911b639726b.tar.gz
nixpkgs-b1c83f9f0110e704e2bd7abf11dab911b639726b.tar.bz2
nixpkgs-b1c83f9f0110e704e2bd7abf11dab911b639726b.tar.lz
nixpkgs-b1c83f9f0110e704e2bd7abf11dab911b639726b.tar.xz
nixpkgs-b1c83f9f0110e704e2bd7abf11dab911b639726b.tar.zst
nixpkgs-b1c83f9f0110e704e2bd7abf11dab911b639726b.zip
vlang: fix build on darwin
-rw-r--r--pkgs/development/compilers/vlang/default.nix37
-rw-r--r--pkgs/development/libraries/boehm-gc/default.nix2
2 files changed, 23 insertions, 16 deletions
diff --git a/pkgs/development/compilers/vlang/default.nix b/pkgs/development/compilers/vlang/default.nix
index c0e6bf1e129..431cfe789f1 100644
--- a/pkgs/development/compilers/vlang/default.nix
+++ b/pkgs/development/compilers/vlang/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchFromGitHub, glfw, freetype, openssl, makeWrapper, upx, pkgsStatic, xorg, binaryen }:
+{ lib, stdenv, fetchFromGitHub, glfw, freetype, openssl, makeWrapper, upx, pkgsStatic, xorg, binaryen, darwin }:
 
 let
   version = "weekly.2023.19";
@@ -33,6 +33,9 @@ let
     rev = "6e970bd0a7459ad7798588f1ace4aa46c5e789a2";
     hash = "sha256-hFf7c8ZNMU1j7fgmDakuO7tBVr12Wq0dgQddJnkMajE=";
   };
+  boehmgcStatic = pkgsStatic.boehmgc.override {
+    enableStatic = stdenv.isDarwin;
+  };
 in
 stdenv.mkDerivation {
   pname = "vlang";
@@ -50,14 +53,16 @@ stdenv.mkDerivation {
 
   nativeBuildInputs = [ makeWrapper ];
 
+  buildInputs = lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Cocoa;
+
   makeFlags = [
     "local=1"
   ];
 
   env.VC = vc;
   env.VFLAGS = if stdenv.isDarwin then
-    # on darwin we need to add a manual link to libgc since it doesn't have a libgc.a
-    "-cg -cc ${pkgsStatic.clang}/bin/clang -no-retry-compilation -ldflags -L${pkgsStatic.boehmgc}/lib -ldflags -lgc -ldflags -L${binaryen}/lib"
+    # on darwin we need to add a manual link to libgc
+    "-cc ${stdenv.cc}/bin/cc -no-retry-compilation -ldflags -L${boehmgcStatic}/lib -ldflags -lgc -ldflags -L${binaryen}/lib"
   else
     # libX11.dev and xorg.xorgproto are needed because of
     # builder error: Header file <X11/Xlib.h>, needed for module `clipboard.x11` was not found. Please install a package with the X11 development headers, for example: `apt-get install libx11-dev`.
@@ -68,23 +73,25 @@ stdenv.mkDerivation {
   preBuild = ''
     export HOME=$(mktemp -d)
     mkdir -p ./thirdparty/tcc/lib
-    # this step is not needed it's just to silence a warning
-    # we don't use tcc at all since it fails on a missing libatomic
+    cp -r ${boehmgcStatic}/lib/* ./thirdparty/tcc/lib
+  ''
+  # this step is not needed it's just to silence a warning
+  # we don't use tcc at all since it fails on a missing libatomic
+  + lib.optionalString stdenv.isLinux ''
     ln -s ${pkgsStatic.tinycc}/bin/tcc ./thirdparty/tcc/tcc.exe
-    cp -r ${pkgsStatic.boehmgc}/lib/* ./thirdparty/tcc/lib
-  '' + lib.optionalString stdenv.isDarwin ''
-    # this file isn't used by clang, but it's just to silence a warning
-    # the compiler complains on an empty file, so this makes it "close" to real
-    substituteInPlace vlib/builtin/builtin_d_gcboehm.c.v \
-        --replace "libgc.a" "libgc.la"
   '';
 
   # vcreate_test.v requires git, so we must remove it when building the tools.
-  # vtest.v fails on Darwin, so let's just disable it for now.
   preInstall = ''
     mv cmd/tools/vcreate/vcreate_test.v $HOME/vcreate_test.v
-  '' + lib.optionalString stdenv.isDarwin ''
-    mv cmd/tools/vtest.v $HOME/vtest.v
+  ''
+  # builder error: Header file <Cocoa/Cocoa.h>, needed for module `clipboard` was not found.
+  + lib.optionalString stdenv.isDarwin ''
+    for flag in $NIX_CFLAGS_COMPILE; do
+      if [[ $flag == /*/Library/Frameworks ]]; then
+        VFLAGS+=" -ldflags -F$flag"
+      fi
+    done
   '';
 
   installPhase = ''
@@ -110,8 +117,6 @@ stdenv.mkDerivation {
   # Return vcreate_test.v and vtest.v, so the user can use it.
   postInstall = ''
     cp $HOME/vcreate_test.v $out/lib/cmd/tools/vcreate_test.v
-  '' + lib.optionalString stdenv.isDarwin ''
-    cp $HOME/vtest.v $out/lib/cmd/tools/vtest.v
   '';
 
   meta = with lib; {
diff --git a/pkgs/development/libraries/boehm-gc/default.nix b/pkgs/development/libraries/boehm-gc/default.nix
index de5aff6c3b6..e37eb26deb3 100644
--- a/pkgs/development/libraries/boehm-gc/default.nix
+++ b/pkgs/development/libraries/boehm-gc/default.nix
@@ -4,6 +4,7 @@
 # doc: https://github.com/ivmai/bdwgc/blob/v8.2.2/doc/README.macros (LARGE_CONFIG)
 , enableLargeConfig ? false
 , enableMmap ? true
+, enableStatic ? false
 , nixVersions
 }:
 
@@ -26,6 +27,7 @@ stdenv.mkDerivation (finalAttrs: {
     "--enable-cplusplus"
     "--with-libatomic-ops=none"
   ]
+  ++ lib.optional enableStatic "--enable-static"
   ++ lib.optional enableMmap "--enable-mmap"
   ++ lib.optional enableLargeConfig "--enable-large-config";