ddts: notification about it translation of the gcc description
Hello! This is merely an automated notification mail from the ddts 'Debian Description Translation Server'. A translator recently uploaded a new version of the description of this package. The descriptions are included below. For more information about this mail and the ddts, please visit this page: http://auric.debian.org/~grisu/ddtp/ddts-pm.txt Thanks for your attention. #from: Alberto Mardegan <[EMAIL PROTECTED]> #id: a9b00e64460a27daa7b02314090211a9 #lang_postfix: it #packages: gcc Description: The GNU C compiler. The default GNU C compiler for Debian GNU/Linux systems. . This is currently version 2.95.4 for this architecture (i386). Description-it: Il compilatore C GNU Il noto compilatore C GNU per sistemi Debian GNU/Linux. . Questa รจ al momento la versione 2.95.4 per questa architettura (i386).
ddts: notification about nl translation of the gcc-2.95 description
Hello! This is merely an automated notification mail from the ddts 'Debian Description Translation Server'. A translator recently uploaded a new version of the description of this package. The descriptions are included below. For more information about this mail and the ddts, please visit this page: http://auric.debian.org/~grisu/ddtp/ddts-pm.txt Thanks for your attention. #from: Xaveer Leijtens <[EMAIL PROTECTED]> #id: 3da680546e5ceaaa59bd6adcb0f521cd #lang_postfix: nl #packages: gcc-2.95 Description: The GNU C compiler. NOTE: This is not a final release, but taken from the CVS gcc-2_95-branch (dated 20010522). . This is the GNU C compiler, a fairly portable optimizing compiler which supports multiple languages. This package includes support for C, C++, and Objective C. Description-nl: De GNU C compiler. NB: Dit is niet een uiteindelijke versie, maar deze versie stamt af van de CVS gcc-2_95-branch (gedateerd 20010522). . Dit is de GNU C compiler, een overdraagbare optimaliserende compiler die verschillende talen ondersteunt. Dit pakket bevat ondersteuning voor C, C++ en Objective C.
Bug#114029: gcc-2.95-doc: misleading documentation for -malign-{jump,loop,function}s on sparc
Package: gcc-2.95-doc Version: 2.95.4-0.010902 Severity: minor [Only a documentation issue and 3.0 drops support for these non-portable flags in any event...] >From the info file: | `-malign-loops=NUM' | Align loops to a 2 raised to a NUM byte boundary. If | `-malign-loops' is not specified, the default is 2. | | `-malign-jumps=NUM' | Align instructions that are only jumped to to a 2 raised to a NUM | byte boundary. If `-malign-jumps' is not specified, the default | is 2. | | `-malign-functions=NUM' | Align the start of functions to a 2 raised to NUM byte boundary. | If `-malign-functions' is not specified, the default is 2 if | compiling for 32 bit sparc, and 5 if compiling for 64 bit sparc. But: | (base)[EMAIL PROTECTED]:~$ gcc -o test test.c -malign-loops=2 | cc1: Internal compiler error: | cc1: -malign-loops=2 is not between 4 and 128 or is not a power of two | (base)[EMAIL PROTECTED]:~$ gcc -o test test.c -malign-jumps=2 | cc1: Internal compiler error: | cc1: -malign-jumps=2 is not between 4 and 128 or is not a power of two | (base)[EMAIL PROTECTED]:~$ gcc -o test test.c -malign-functions=2 | cc1: Internal compiler error: | cc1: -malign-functions=2 is not between 4 and 128 or is not a power of two | (base)[EMAIL PROTECTED]:~$ -- James