From 0336a2f3bba6aa07c4ae1cad0f21a36ec18b6ac3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Fri, 31 Oct 2008 18:39:49 +0000 Subject: [PATCH] TinyCC: Fix crt and loader paths. svn path=/nixpkgs/trunk/; revision=13170 --- pkgs/development/compilers/tinycc/default.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pkgs/development/compilers/tinycc/default.nix b/pkgs/development/compilers/tinycc/default.nix index e4e50f7dbfeb..5c55afd63fb1 100644 --- a/pkgs/development/compilers/tinycc/default.nix +++ b/pkgs/development/compilers/tinycc/default.nix @@ -14,6 +14,15 @@ let version = "0.9.24"; in patchPhase = '' substituteInPlace "texi2pod.pl" \ --replace "/usr/bin/perl" "${perl}/bin/perl" + + # To produce executables, `tcc' needs to know where `crt*.o' are. + sed -i "tcc.c" \ + -e's|define CONFIG_TCC_CRT_PREFIX.*$|define CONFIG_TCC_CRT_PREFIX "${stdenv.glibc}/lib"|g ; + s|tcc_add_library_path(s, "/usr/lib");|tcc_add_library_path(s, "${stdenv.glibc}/lib");|g' + + # Tell it about the loader's location. + sed -i "tccelf.c" \ + -e's|".*/ld-linux\([^"]\+\)"|"${stdenv.glibc}/lib/ld-linux\1"|g' ''; postInstall = ''