tinycc-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Tinycc-devel] release 0.9.25 candidate


From: Stefan de Konink
Subject: Re: [Tinycc-devel] release 0.9.25 candidate
Date: Tue, 12 May 2009 18:16:35 +0200
User-agent: Thunderbird 2.0.0.19 (X11/20081209)

Stefan de Konink wrote:
Stefan de Konink wrote:
grischka wrote:
I have put together a release candidate for 0.9.25:

    http://repo.or.cz/w/tinycc.git

which I plan to upload at savannah in a week or so.  Say unless
there is something important still missing.

--- grischka

Does this release also have support for uclibc?

Negative :(

Could anyone help me with detecting uclibc and use the applied target? In anycase the attached patch works :)


Stefan
diff --git a/tccelf.c b/tccelf.c
index 5971442..8de293a 100644
--- a/tccelf.c
+++ b/tccelf.c
@@ -1279,6 +1279,8 @@ static char elf_interp[] = "/usr/libexec/ld-elf.so.1";
 static char elf_interp[] = "/lib/ld-linux.so.3";
 #elif defined(TCC_TARGET_X86_64)
 static char elf_interp[] = "/lib/ld-linux-x86-64.so.2";
+#elif defined(TCC_TARGET_UCLIBC)
+static char elf_interp[] = "/lib/ld-uClibc.so.0";
 #else
 static char elf_interp[] = "/lib/ld-linux.so.2";
 #endif

reply via email to

[Prev in Thread] Current Thread [Next in Thread]