about summary refs log tree commit diff
path: root/make/lib/default.nix
blob: 81440ca6a770747c796decc320726e2d32680d53 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
rec {

  # Should point at your Nixpkgs installation.
  pkgPath = ./pkgs;

  pkgs = import (pkgPath + /system/all-packages.nix) {};

  stdenv = pkgs.stdenv;
  

  compileC =
  { main
  , localIncludes ? "auto"
  , localIncludePath ? []
  , cFlags ? ""
  , sharedLib ? false
  }:
  stdenv.mkDerivation {
    name = "compile-c";
    builder = ./compile-c.sh;
    
    localIncludes =
      if localIncludes == "auto" then
        dependencyClosure {
          scanner = main:
            import (findIncludes {
              inherit main;
            });
          searchPath = localIncludePath;
          startSet = [main];
        }
      else
        localIncludes;
        
    inherit main;
    
    cFlags = [
      cFlags
      (if sharedLib then ["-fpic"] else [])
      (map (p: "-I" + (relativise (dirOf main) p)) localIncludePath)
    ];
  };

  
  findIncludes = {main}: stdenv.mkDerivation {
    name = "find-includes";
    realBuilder = pkgs.perl ~ "bin/perl";
    args = [ ./find-includes.pl ];
    inherit main;
  };

    
  link = {objects, programName ? "program", libraries ? []}: stdenv.mkDerivation {
    name = "link";
    builder = ./link.sh;
    inherit objects programName libraries;
  };

  
  makeLibrary = {objects, libraryName ? [], sharedLib ? false}:
  # assert sharedLib -> fold (obj: x: assert obj.sharedLib && x) false objects
  stdenv.mkDerivation {
    name = "library";
    builder = ./make-library.sh;
    inherit objects libraryName sharedLib;
  };

  
}