mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
tinycc: updating it to 0.9.26
I simplified the expression a bit. And I renamed it to 'tcc'. I think everyone calls it tcc.
This commit is contained in:
parent
a83f32b335
commit
b10ab7a19a
|
@ -2,95 +2,62 @@
|
||||||
|
|
||||||
assert stdenv ? glibc;
|
assert stdenv ? glibc;
|
||||||
|
|
||||||
let version = "0.9.25"; in
|
stdenv.mkDerivation rec {
|
||||||
stdenv.mkDerivation {
|
name = "tcc-0.9.26";
|
||||||
name = "tinycc-${version}";
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://savannah/tinycc/tcc-${version}.tar.bz2";
|
url = "mirror://savannah/tinycc/${name}.tar.bz2";
|
||||||
sha256 = "0dfycf80x73dz67c97j1ry29wrv35393ai5ry46i1x1fzfq6rv8v";
|
sha256 = "0wbdbdq6090ayw8bxnbikiv989kykff3m5rzbia05hrnwhd707jj";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ perl texinfo ];
|
nativeBuildInputs = [ perl texinfo ];
|
||||||
|
|
||||||
patches =
|
postPatch = ''
|
||||||
[ (fetchurl {
|
substituteInPlace "texi2pod.pl" \
|
||||||
# Add support for `alloca' on x86-64.
|
--replace "/usr/bin/perl" "${perl}/bin/perl"
|
||||||
url = "http://repo.or.cz/w/tinycc.git/patch/8ea8305199496ba29b6d0da2de07aea4441844aa";
|
'';
|
||||||
sha256 = "0dz1cm9zihk533hszqql4gxpzbp8c4g9dnvkkh9vs4js6fnz1fl2";
|
|
||||||
name = "x86-64-alloca.patch";
|
|
||||||
})
|
|
||||||
|
|
||||||
(fetchurl {
|
preConfigure = ''
|
||||||
# Fix alignment of the return value of `alloca'.
|
configureFlagsArray+=("--elfinterp=$(cat $NIX_GCC/nix-support/dynamic-linker)")
|
||||||
url = "http://repo.or.cz/w/tinycc.git/patch/dca2b15df42c1341794dd412917708416da25594";
|
configureFlagsArray+=("--crtprefix=${stdenv.glibc}/lib")
|
||||||
sha256 = "0617a69gnfdmv8pr6dj3szv97v3zh57439dsbklxrnipx2jv6pq7";
|
configureFlagsArray+=("--sysincludepaths=${stdenv.glibc}/include:{B}/include")
|
||||||
name = "x86-64-alloca-align.patch";
|
configureFlagsArray+=("--libpaths=${stdenv.glibc}/lib")
|
||||||
})
|
'';
|
||||||
];
|
|
||||||
|
|
||||||
postPatch = ''
|
doCheck = true;
|
||||||
substituteInPlace "texi2pod.pl" \
|
checkTarget = "test";
|
||||||
--replace "/usr/bin/perl" "${perl}/bin/perl"
|
|
||||||
|
|
||||||
# To produce executables, `tcc' needs to know where `crt*.o' are.
|
meta = {
|
||||||
sed -i "tcc.h" \
|
description = "TinyCC, a small, fast, and embeddable C compiler and interpreter";
|
||||||
-e's|define CONFIG_TCC_CRT_PREFIX.*$|define CONFIG_TCC_CRT_PREFIX "${stdenv.glibc}/lib"|g'
|
|
||||||
|
|
||||||
sed -i "libtcc.c" \
|
longDescription =
|
||||||
-e's|tcc_add_library_path(s, CONFIG_SYSROOT "/lib");|tcc_add_library_path(s, "${stdenv.glibc}/lib");|g;
|
'' TinyCC (aka TCC) is a small but hyper fast C compiler. Unlike
|
||||||
s|tcc_add_sysinclude_path(s, CONFIG_SYSROOT "/usr/include");|tcc_add_library_path(s, "${stdenv.glibc}/include");|g ;
|
other C compilers, it is meant to be self-sufficient: you do not
|
||||||
s|tcc_add_sysinclude_path(s, buf);|tcc_add_sysinclude_path(s, buf); tcc_add_sysinclude_path(s, "${stdenv.glibc}/include");|g'
|
need an external assembler or linker because TCC does that for
|
||||||
|
you.
|
||||||
|
|
||||||
# Tell it about the loader's location.
|
TCC compiles so fast that even for big projects Makefiles may not
|
||||||
sed -i "tccelf.c" \
|
be necessary.
|
||||||
-e's|".*/ld-linux\([^"]\+\)"|"${stdenv.glibc}/lib/ld-linux\1"|g'
|
|
||||||
''; # "
|
|
||||||
|
|
||||||
postInstall = ''
|
TCC not only supports ANSI C, but also most of the new ISO C99
|
||||||
makeinfo --force tcc-doc.texi || true
|
standard and many GNU C extensions.
|
||||||
|
|
||||||
mkdir -p "$out/share/info"
|
TCC can also be used to make C scripts, i.e. pieces of C source
|
||||||
mv tcc-doc.info* "$out/share/info"
|
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.
|
||||||
|
|
||||||
echo 'int main () { printf ("it works!\n"); exit(0); }' | \
|
TCC can also automatically generate memory and bound checks while
|
||||||
"$out/bin/tcc" -run -
|
allowing all C pointers operations. TCC can do these checks even
|
||||||
'';
|
if non patched libraries are used.
|
||||||
|
|
||||||
doCheck = true;
|
With libtcc, you can use TCC as a backend for dynamic code
|
||||||
checkTarget = "test";
|
generation.
|
||||||
|
'';
|
||||||
|
|
||||||
meta = {
|
homepage = http://www.tinycc.org/;
|
||||||
description = "TinyCC, a small, fast, and embeddable C compiler and interpreter";
|
license = "LGPLv2+";
|
||||||
|
|
||||||
longDescription =
|
platforms = stdenv.lib.platforms.unix;
|
||||||
'' TinyCC (aka TCC) is a small but hyper fast C compiler. Unlike
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
||||||
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 ];
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
|
@ -177,7 +177,7 @@ with (import ./release-lib.nix);
|
||||||
texLiveExtra = linux;
|
texLiveExtra = linux;
|
||||||
texinfo = all;
|
texinfo = all;
|
||||||
time = linux;
|
time = linux;
|
||||||
tinycc = ["i686-linux"];
|
tinycc = linux;
|
||||||
udev = linux;
|
udev = linux;
|
||||||
unrar = linux;
|
unrar = linux;
|
||||||
unzip = all;
|
unzip = all;
|
||||||
|
|
|
@ -304,7 +304,7 @@ let
|
||||||
texinfo = all;
|
texinfo = all;
|
||||||
tightvnc = linux;
|
tightvnc = linux;
|
||||||
time = linux;
|
time = linux;
|
||||||
tinycc = ["i686-linux"];
|
tinycc = linux;
|
||||||
uae = linux;
|
uae = linux;
|
||||||
udev = linux;
|
udev = linux;
|
||||||
unrar = linux;
|
unrar = linux;
|
||||||
|
|
Loading…
Reference in a new issue