diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2001-05-30 06:40:39 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2001-05-30 06:40:39 +0000 |
commit | 127e6e3b319280c6938d8a494655d0e932d3ec66 (patch) | |
tree | 7b6b9eab4162f81effd279806f09aded7331af81 /extra/gcc-uClibc | |
parent | b261aef543b8912d3156f2975c5ec13b780c1210 (diff) | |
download | uClibc-alpine-127e6e3b319280c6938d8a494655d0e932d3ec66.tar.bz2 uClibc-alpine-127e6e3b319280c6938d8a494655d0e932d3ec66.tar.xz |
Revert behavior of wrapper to not use dynamic linker in the build dir, so
those who want to should now be able to compile against uClibc without
installing it (using the "build" behavior).
Diffstat (limited to 'extra/gcc-uClibc')
-rw-r--r-- | extra/gcc-uClibc/gcc-uClibc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/gcc-uClibc/gcc-uClibc.c b/extra/gcc-uClibc/gcc-uClibc.c index 083844e89..abcd3971a 100644 --- a/extra/gcc-uClibc/gcc-uClibc.c +++ b/extra/gcc-uClibc/gcc-uClibc.c @@ -176,7 +176,7 @@ int main(int argc, char **argv) if (linking && source_count) { if (!use_static_linking) { if (DYNAMIC_LINKER[0]) { /* not empty string */ -#if 0 +#if 1 gcc_argv[i++] = "-Wl,--dynamic-linker,"DYNAMIC_LINKER; if (strstr(DYNAMIC_LINKER,"uclibc") != 0) { /* custom linker */ use_rpath = 0; /* so -rpath not needed for normal case */ |