diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2004-10-01 21:23:53 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2004-10-01 21:23:53 +0000 |
commit | 5883c5c220326c77d39797c51767a6f5481e5897 (patch) | |
tree | 85be55a4d17c82ef6837de9004de3fb772f2af8a /dev-libs/dietlibc/files | |
parent | Removed dependency on media-sound/gsm and dev-libs/glib. Closes #65439. (Mani... (diff) | |
download | gentoo-2-5883c5c220326c77d39797c51767a6f5481e5897.tar.gz gentoo-2-5883c5c220326c77d39797c51767a6f5481e5897.tar.bz2 gentoo-2-5883c5c220326c77d39797c51767a6f5481e5897.zip |
Version bump, add debug support, do CFLAGS properly, do gcc3[34] patch properly, ssp.c merged upstream, mips in unstable, and add cross-compile stuff.
Diffstat (limited to 'dev-libs/dietlibc/files')
-rw-r--r-- | dev-libs/dietlibc/files/digest-dietlibc-0.27 | 1 | ||||
-rw-r--r-- | dev-libs/dietlibc/files/gcc-33-r2.patch | 22 |
2 files changed, 23 insertions, 0 deletions
diff --git a/dev-libs/dietlibc/files/digest-dietlibc-0.27 b/dev-libs/dietlibc/files/digest-dietlibc-0.27 new file mode 100644 index 000000000000..4647fc743ddd --- /dev/null +++ b/dev-libs/dietlibc/files/digest-dietlibc-0.27 @@ -0,0 +1 @@ +MD5 cd90fae1bf6c217889c0f89d2d0c1570 dietlibc-0.27.tar.bz2 527396 diff --git a/dev-libs/dietlibc/files/gcc-33-r2.patch b/dev-libs/dietlibc/files/gcc-33-r2.patch new file mode 100644 index 000000000000..4e85e2758be0 --- /dev/null +++ b/dev-libs/dietlibc/files/gcc-33-r2.patch @@ -0,0 +1,22 @@ +I don't know who wrote the original gcc-33.patch, but it radically changes the +meaning of the flags. The -m prefix for the following changed to -f, but the +behaviour stayed the same. +Passing a 0 or no number with the arguments means to use the default value for +that machine, which is definetly not what we want to do. +We explictly want an alignment of '1' (no alignment at all) as opposed to the +default alignment. On a machine with a large default alignment that would be +otherwise used, this results in a lot of wasted space. += Robin H. Johnson (robbat2@gentoo.org) - October 01, 2004. +--- diet.c 2003-10-10 15:17:46.000000000 +0200 ++++ diet.c 2004-02-15 19:03:01.000000000 +0100 +@@ -26,8 +26,8 @@ + + static const char* Os[] = { + "i386","-Os","-mpreferred-stack-boundary=2", +- "-malign-functions=1","-malign-jumps=1", +- "-malign-loops=1","-fomit-frame-pointer",0, ++ "-falign-functions=1","-falign-jumps=1", ++ "-falign-loops=1","-fomit-frame-pointer",0, + "x86_64","-Os","-fno-omit-frame-pointer",0, + "sparc","-Os","-mcpu=supersparc",0, + "sparc64","-Os","-m64",0, |