diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-05-12 06:19:18 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-05-12 06:19:18 +0000 |
commit | f0da4aa1d854ca9c2a0e652dcb1d81bbf4d971f4 (patch) | |
tree | 39dd87100094d48dbc7e8557f26d5c02d331606f /extra/gcc-uClibc | |
parent | 249cb00d9f655778aa8a4519ee3e610a904d694d (diff) | |
download | uClibc-alpine-f0da4aa1d854ca9c2a0e652dcb1d81bbf4d971f4.tar.bz2 uClibc-alpine-f0da4aa1d854ca9c2a0e652dcb1d81bbf4d971f4.tar.xz |
Ok, this should finish off my massive ro-organization. The source
tree is less messy now (which helps), all libraries are placed into
uClibc/lib when compiling, all libraries now use a consistant mechanism
for being built, all libraries use a consistant naming scheme where the
lib name includes the uClibc version number, which makes ldconfig
happy and willing to work with us.
-Erik
Diffstat (limited to 'extra/gcc-uClibc')
-rw-r--r-- | extra/gcc-uClibc/gcc-uClibc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extra/gcc-uClibc/gcc-uClibc.c b/extra/gcc-uClibc/gcc-uClibc.c index 1a0eb1da7..710be8df0 100644 --- a/extra/gcc-uClibc/gcc-uClibc.c +++ b/extra/gcc-uClibc/gcc-uClibc.c @@ -54,12 +54,12 @@ static char *rpath_link[] = { "-Wl,-rpath-link,"UCLIBC_INSTALL_DIR"lib", - "-Wl,-rpath-link,"UCLIBC_BUILD_DIR + "-Wl,-rpath-link,"UCLIBC_BUILD_DIR"lib" }; static char *rpath[] = { "-Wl,-rpath,"UCLIBC_INSTALL_DIR"lib", - "-Wl,-rpath,"UCLIBC_BUILD_DIR + "-Wl,-rpath,"UCLIBC_BUILD_DIR"lib" }; static char *uClibc_inc[] = { @@ -74,7 +74,7 @@ static char *crt0_path[] = { static char *lib_path[] = { "-L"UCLIBC_INSTALL_DIR"lib", - "-L"UCLIBC_BUILD_DIR + "-L"UCLIBC_BUILD_DIR"lib" }; static char static_linking[] = "-static"; |