summary refs log tree commit diff
path: root/pkgs/development/compilers/tinycc/default.nix
blob: 11b0b2ea7b276df88f7429f7bdbd192700bbc872 (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
{ stdenv, fetchurl, perl, texinfo }:

assert stdenv ? glibc;

stdenv.mkDerivation rec {
  name = "tcc-0.9.26";

  src = fetchurl {
    url = "mirror://savannah/tinycc/${name}.tar.bz2";
    sha256 = "0wbdbdq6090ayw8bxnbikiv989kykff3m5rzbia05hrnwhd707jj";
  };

  nativeBuildInputs = [ perl texinfo ];

  postPatch = ''
    substituteInPlace "texi2pod.pl" \
      --replace "/usr/bin/perl" "${perl}/bin/perl"
  '';

  preConfigure = ''
    configureFlagsArray+=("--elfinterp=$(cat $NIX_GCC/nix-support/dynamic-linker)")
    configureFlagsArray+=("--crtprefix=${stdenv.glibc}/lib")
    configureFlagsArray+=("--sysincludepaths=${stdenv.glibc}/include:{B}/include")
    configureFlagsArray+=("--libpaths=${stdenv.glibc}/lib")
  '';

  doCheck = true;
  checkTarget = "test";

  meta = {
    description = "TinyCC, a small, fast, and embeddable C compiler and interpreter";

    longDescription =
      '' TinyCC (aka TCC) is a small but hyper fast C compiler.  Unlike
         other C compilers, it is meant to be self-sufficient: you do not
         need an external assembler or linker because TCC does that for
         you.

         TCC compiles so fast that even for big projects Makefiles may not
         be necessary.

         TCC not only supports ANSI C, but also most of the new ISO C99
         standard and many GNU C extensions.

         TCC can also be used to make C scripts, i.e. pieces of C source
         that you run as a Perl or Python script.  Compilation is so fast
         that your script will be as fast as if it was an executable.

         TCC can also automatically generate memory and bound checks while
         allowing all C pointers operations.  TCC can do these checks even
         if non patched libraries are used.

         With libtcc, you can use TCC as a backend for dynamic code
         generation.
      '';

    homepage = http://www.tinycc.org/;
    license = "LGPLv2+";

    platforms = stdenv.lib.platforms.unix;
    maintainers = [ stdenv.lib.maintainers.ludo ];
  };
}