Any Software.. get rush undr $15-$99..

2005-05-20 Thread Emmanuel
Save money on buying software!!!
http://ijlrsf.dkzsgcd6a5v2swv.realndreal9.com

--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]


Bug#862858: gcc-6.3.0 produces binary that gdb cannot automatically reload when it changes

2017-05-17 Thread Emmanuel Thomé
Package: gcc-6
Version: 6.3.0-18
Severity: important

Hi,

I am directing this bug as relevant to gcc package as this is my best
guess so far of a possible culprit. gdb is the package which has its
functionality affected.

Consider the following trivial code:
#include 
void a()
{
printf("Hello, world\n");
}
int main()
{
a();
return 0;
}

When debugging such a program with gdb, gdb notices if the binary changes
between two runs (within the same session). However, binaries created
with gcc as in packages 6.3.0-18 (or 6.3.0-16 in testing) are not
properly reloaded:

localhost /tmp $ gcc -W -Wall -g a.c
localhost /tmp $ gdb -q a.out
Reading symbols from a.out...done.
(gdb) b a
Breakpoint 1 at 0x6b4: file a.c, line 5.
(gdb) r
Starting program: /tmp/a.out

Breakpoint 1, a () at a.c:5
5   printf("Hello, world\n");
(gdb) shell gcc -W -Wall -g a.c
(gdb) r
The program being debugged has been started already.
Start it from the beginning? (y or n) y
`/tmp/a.out' has changed; re-reading symbols.
Error in re-setting breakpoint 1: Cannot access memory at address 0x
46b0
Starting program: /tmp/a.out
Hello, world
[Inferior 1 (process 22102) exited normally]
(gdb) quit

Note that instructing gdb to explicitly reload the binary 
localhost ~ $ dpkg -l gcc-6 gdb binutils | grep ^i
ii  binutils   2.28-5   amd64GNU assembler, linker and 
binary utilities
ii  gcc-6  6.3.0-18 amd64GNU C compiler
ii  gdb7.12-6   amd64GNU Debugger

I've tried other gcc+gdb combinations.

Binary reload fails similarly in the following case:
ubuntu 17.04 gdb 7.12.50.20170314-0ubuntu1 + gcc 6.3.0-2ubuntu1

Binary reloads fine in the following cases:
debian testing, gdb 7.12-6 + home-compiled upstream gcc-7.1.0
debian testing, gdb 7.12-6 + home-compiled upstream gcc-6.3.0
debian testing, gdb 7.12-6 + gcc 5.4.1-4
archlinux gdb 7.12.1 + gcc 6.3.1 20170306

On the gcc-6.3.0 I had, objdump -x a.out   tells, among other things:
EXEC_P, HAS_SYMS, D_PAGED
start address 0x004003f0

while on the gcc-6.3.0-16 debian package, I have:
HAS_SYMS, DYNAMIC, D_PAGED
start address 0x0580


I would be happy to provide more information if needed.

Cheers,

E.




-- System Information:
Debian Release: 9.0
  APT prefers testing
  APT policy: (900, 'testing')
Architecture: amd64
 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.9.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=C, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages gcc-6 depends on:
ii  binutils  2.28-5
ii  cpp-6 6.3.0-18
ii  gcc-6-base6.3.0-18
ii  libc6 2.24-10
ii  libcc1-0  6.3.0-18
ii  libgcc-6-dev  6.3.0-18
ii  libgcc1   1:6.3.0-18
ii  libgmp10  2:6.1.2+dfsg-1
ii  libisl15  0.18-1
ii  libmpc3   1.0.3-1+b2
ii  libmpfr4  3.1.5-1
ii  libstdc++66.3.0-18
ii  zlib1g1:1.2.8.dfsg-5

Versions of packages gcc-6 recommends:
ii  libc6-dev  2.24-10

Versions of packages gcc-6 suggests:
ii  gcc-6-doc 6.3.0-1
pn  gcc-6-locales 
ii  gcc-6-multilib6.3.0-18
pn  libasan3-dbg  
pn  libatomic1-dbg
pn  libcilkrts5-dbg   
pn  libgcc1-dbg   
pn  libgomp1-dbg  
pn  libitm1-dbg   
pn  liblsan0-dbg  
pn  libmpx2-dbg   
pn  libquadmath0-dbg  
pn  libtsan0-dbg  
pn  libubsan0-dbg 

-- no debconf information



Bug#862858: gcc-6.3.0 produces binary that gdb cannot automatically reload when it changes

2017-05-17 Thread Emmanuel Thomé
Upon further investigation, the bug I encountered is rather with gdb than
gcc.

gdb does not seem to cope very well with position-independent
executables. Reloading a PIE file gets the entry point wrong.

Example below. Notice how the first time gdb seems a PIE executable (when
a.out has gone PIE compared to the previous one which wasn't), things go
well. Problem is on the second load.

cassoulet /tmp $ gdb 
GNU gdb (Debian 7.12-6) 7.12.0.20161007-git
Copyright (C) 2016 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later 
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
.
Find the GDB manual and other documentation resources online at:
.
For help, type "help".
Type "apropos word" to search for commands related to "word".
(gdb) shell gcc-6 -W -Wall -g -no-pie a.c
(gdb) file a.out
Reading symbols from a.out...done.
(gdb) b a
Breakpoint 1 at 0x4004fa: file a.c, line 5.
(gdb) r
Starting program: /tmp/a.out 

Breakpoint 1, a () at a.c:5
5   printf("Hello, world\n");
(gdb) shell gcc-6 -W -Wall -g -no-pie a.c
(gdb) r
The program being debugged has been started already.
Start it from the beginning? (y or n) y
`/tmp/a.out' has changed; re-reading symbols.
Starting program: /tmp/a.out 

Breakpoint 1, a () at a.c:5
5   printf("Hello, world\n");
(gdb) shell gcc-6 -W -Wall -g -fPIE -pie a.c
(gdb) r
The program being debugged has been started already.
Start it from the beginning? (y or n) y
`/tmp/a.out' has changed; re-reading symbols.
Starting program: /tmp/a.out 

Breakpoint 1, a () at a.c:5
5   printf("Hello, world\n");
(gdb) shell gcc-6 -W -Wall -g -fPIE -pie a.c
(gdb) r
The program being debugged has been started already.
Start it from the beginning? (y or n) y
`/tmp/a.out' has changed; re-reading symbols.
Error in re-setting breakpoint 1: Cannot access memory at address 0x46b0
Starting program: /tmp/a.out 
Hello, world
[Inferior 1 (process 24316) exited normally]
(gdb) 


E.



Bug#344265: gcj-4.0: Segfault on -fdump-tree-all-all

2005-12-21 Thread Emmanuel Fleury
Package: gcj-4.0
Version: 4.0.2-5j2
Severity: important

On the following Java code:

class Main {

   public static void main (String[] args){
System.out.println("Hello World");
   }
}

I have the following behaviour:

[EMAIL PROTECTED] generic]$ gcj -fdump-tree-all-all --main=Main test1.java
test1.java: In class 'Main':
test1.java: In constructor '()':
test1.java:6: internal compiler error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See http://gcc.gnu.org/bugs.html> for instructions.
For Debian GNU/Linux specific bug reporting instructions,
see .


But compilation without the -fdump-tree-all-all option is ok.

[EMAIL PROTECTED] generic]$ gcj --main=Main test1.java
[EMAIL PROTECTED] generic]$ ls
a.out  Makefile  test1.cpp   test2.c
gcc_fdump-tree_option.txt  test1.c   test1.java  test3.c



-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.14
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages gcj-4.0 depends on:
ii  gcc-4.0   4.0.2-5The GNU C compiler
ii  gij-4.0   4.0.2-5j2  The GNU Java bytecode
interpreter
ii  java-common   0.23   Base of all Java packages
ii  libc6 2.3.5-9GNU C Library: Shared
libraries an
ii  libgcc1   1:4.0.2-5  GCC support library
ii  libgcj6   4.0.2-5j2  Java runtime library for
use with
ii  libgcj6-common4.0.2-5j2  Java runtime library for
use with
ii  libgcj6-dev   4.0.2-5j2  Java development headers
and stati
ii  sun-j2sdk1.5 [java-common 1.5.0+update05 Java(TM) 2 SDK, Standard
Edition,
ii  zlib1g1:1.2.3-8  compression library - runtime

Versions of packages gcj-4.0 recommends:
ii  fastjar   1:4.0.2-5  Jar creation utility

-- no debconf information

Regards
-- 
Emmanuel Fleury

The Net is a waste of time, and that's exactly what's right about it.
  -- William Gibson


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#345525: gcc-4.0: [x86_64] Can't get the build-dep for AMD64

2006-01-01 Thread Emmanuel Fleury
Package: gcc-4.0
Version: 4.0.2-5
Severity: minor
Justification: fails to build from source

I am running on an AMD64 with an AMD64 only repository. I tried to
compile gcc on my computer so I tried to get the depencies for the
compilation solved:

odin:~# apt-get build-dep gcc-4.0
Reading package lists... Done
Building dependency tree... Done
Package libc6-dev-i386 is not available, but is referred to by another
package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
The following NEW packages will be installed:
  autogen automake1.9 autotools-dev chrpath dejagnu doxygen
expect-tcl8.3 gawk
  gnat-4.0 gperf graphviz ia32-libs ia32-libs-dev lib32gcc1 lib32z1
  lib32z1-dev libgmp3-dev libgmpxx3 libgnat-4.0 libmpfr-dev libmpfr1
libopts25
  libopts25-dev libtool realpath tcl8.3
0 upgraded, 26 newly installed, 0 to remove and 0 not upgraded.
E: Package libc6-dev-i386 has no installation candidate
E: Failed to process build dependencies



Well, nothing really serious but it would be nice to have this fixex. ;)

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.14.3
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages gcc-4.0 depends on:
ii  binutils 2.16.1cvs20051214-1 The GNU assembler, linker
and bina
ii  cpp-4.0  4.0.2-5 The GNU C preprocessor
ii  gcc-4.0-base 4.0.2-5 The GNU Compiler Collection
(base
ii  libc62.3.5-10GNU C Library: Shared
libraries an
ii  libgcc1  1:4.0.2-5   GCC support library

Versions of packages gcc-4.0 recommends:
ii  libc6-dev 2.3.5-10   GNU C Library: Development
Librari
pn  libmudflap0-dev(no description available)

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#33975: Sie kцnnen Bei uns von 300 bis 600 Euro in Woche verdienen

2007-10-02 Thread Emmanuel Fernandez
Zerix Intern.Transver
Manager: Maksim Kovalski
109153 Moskau
leningradskiy 337/2
Tel +7 984-641-1756


Arbeiten Sie endlich für sich selbst! 
Sie wollen sich beruflich verändern ?
Sie kommen in ihrem job nicht wie gewünscht voran und wollen eine
 neuen karriere-kurs einschlagen? Dann sollten wir uns kennen lernen!!! 
Nehmen Sie Ihre Zukunft selbst in die Hand!
Wir sind ein europaweit tätiges Spezialkreditinstitut. Zu unserem
 Kunden gehören konzerneigene und fremde Handelsunternehmen. Zu unserem
 aufgaben gehört neben dem klassischem Kredit ,Leasing und
 Unternehmäskauf/Verkauf (Nachfolgeregelungen) ,Transfer per Western Union 
,Money
 Grimm .In diesem Augenblick arbeiten für uns bereits mehr als 100
 unabhängige Agenten auf der ganzen Welt.
Für unsere Kunde haben wir spezifische Bankdienstleistungen
 entwickelt. Wir bieten  Ihnen eine interessantes Aufgabengebiet mit guten
 persönlichen Entwicklungschancen.
Zu Verstärkung unsere Team  brauchen wir  einen Projekt-Koordinator. 
Zur Zeit wächst unsere Firma und wir haben eine beschränkte Zahl von
 vakanten Stellen. 
Sie haben Interesse an Weiterbildung, können gut organisieren, sind
 verantwortungsbewusst  und überzeugungsstark? Und sie suchen eine Voll
 oder  Teilzeitbeschäftigung? Dann bewerben sie sich! Auch
 Widereinsteiger /innen sind uns willkommen.
Insbesondere eine VOB-konforme Arbeitsweise machen Sie zum idealen
 Kandidaten. 
Wir möchten betonen, dass keinerlei Investitionen Ihrerseits
 erforderlich sind, um mit uns zusammenzuarbeiten. 
Ihre aufgaben liegen in der umfassenden ganzheitlichen und
 bedarfsorientierten Beratung, sowie der aktiven Neu- und 
Bestandkundenakquisition
 unserer Privatkunden.

Haben Sie Interesse an dieser Arbeit, teilen Sie uns bitte mit und wir
 werden uns danach mit Ihnen zum Interview in Verbindung setzen.

Senden Sie uns ihre Antwort an: [EMAIL PROTECTED]

und Sie erhalten weitere Informationen

Sollten sie noch eventuelle Fragen haben,
wird Ihnen selbstverständlich einer unserer 
deutschen Mitarbeiter Zur Verfügung stehen

Mit freundlichem Grüße  

Manager: Maksim Kovalski



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#753791: simgrid: FTBFS on hurd-i386

2014-07-06 Thread Emmanuel Bourg
Le 06/07/2014 19:45, Matthias Klose a écrit :

> maybe uploaded class files built with java8.

I don't think so, this would be caught by Lintian:

http://lintian.debian.org/tags/incompatible-java-bytecode-format.html

Currently no package contains classes using the format 52 (Java 8).

Emmanuel Bourg


-- 
To UNSUBSCRIBE, email to debian-gcc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/53b9ca63.5090...@apache.org



Bug#205404: gcc-3.3: generic thunk code fails for method `virtual void Virt::p(const char*, ...)' which uses `...'

2003-08-14 Thread Emmanuel Eckard
Package: gcc-3.3
Version: 1:3.3.1-1
Severity: important



-- System Information:
Debian Release: testing/unstable
Architecture: powerpc
Kernel: Linux yukiko 2.4.21-ben2 #2 Sun Aug 10 18:47:57 CEST 2003 ppc
Locale: LANG=C, LC_CTYPE=C

Versions of packages gcc-3.3 depends on:
ii  binutils 2.14.90.0.5-0.2 The GNU assembler, linker and bina
ii  cpp-3.3  1:3.3.1-1   The GNU C preprocessor
ii  gcc-3.3-base 1:3.3.1-1   The GNU Compiler Collection (base 
ii  libc62.3.1-17.0.2GNU C Library: Shared libraries an
ii  libgcc1  1:3.3.1-1   GCC support library

-- no debconf information

Thereafter is include the code that fails to compile

#include 
#include 

class Base
{
public:
Base() { }
virtual void p(const char *format, ...)=0;
};

class Der1: public virtual Base
{
public:
 Der1():Base() { }
virtual void p(const char *format, ...)=0;
};

class Der2: public virtual Base
{
public:
Der2():Base() { }
virtual void p(const char *format, ...)=0;
};

class Virt:public virtual Der1, public virtual Der2
{   
public:
Virt():Der1(),Der2() { }
virtual void p(const char *format, ...)
   {
   va_list arglist;
   va_start(arglist,format);
   vprintf(format, arglist);
   va_end(arglist);
}
};


int main(int argc, char *argv[])
{
   Virt v;
   v.p("Hello %d\n", 10);
}






Bug#291246: gcc-3.4: internal compiler error: Didn't find a coloring.

2005-01-19 Thread Emmanuel Fleury
Package: gcc-3.4
Version: 3.4.3-7
Severity: important
Hi,
I'm using the acovea software to try out some compiling optimization and 
I found these bug:

/etc/acovea/benchmarks/treebench.c: In function `btree_remove':
/etc/acovea/benchmarks/treebench.c:996: internal compiler error: Didn't 
find a coloring.

Please submit a full bug report,
with preprocessed source if appropriate.
See http://gcc.gnu.org/bugs.html> for instructions.
For Debian GNU/Linux specific bug reporting instructions,
see .
COMPILE FAILED:
gcc-3.4 -lrt -lm -std=gnu99 -O1 -march=pentium3 -o ACOVEA5F53B52F 
-fno-defer-pop -fno-omit-frame-pointer -fcse-follow-jumps -fgcse 
-fexpensive-optimizations -frerun-cse-after-loop -fcaller-saves 
-fforce-mem -fpeephole2 -fschedule-insns -fschedule-insns2 -fregmove 
-fstrict-aliasing -freorder-blocks -fsched-interblock -fsched-spec 
-freorder-functions -falign-jumps -falign-labels -freduce-all-givs 
-fno-inline -ftracer -fnew-ra -mieee-fp -malign-double -mno-push-args 
-mno-align-stringops -mfpmath=387 -momit-leaf-frame-pointer 
-fno-math-errno -funsafe-math-optimizations -fno-signaling-nans 
-finline-limit=700 /etc/acovea/benchmarks/treebench.c

I reproduced the bug on two differents architectures (TM5800 and i686).
-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.9
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Versions of packages gcc-3.4 depends on:
ii  binutils2.15-5   The GNU assembler, linker 
and bina
ii  cpp-3.4 3.4.3-7  The GNU C preprocessor
ii  gcc-3.4-base3.4.3-7  The GNU Compiler Collection 
(base
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared 
libraries an
ii  libgcc1 1:3.4.3-7GCC support library

-- no debconf information
Regards
--
Emmanuel
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]


libstdc++.so.2.8: cannot load shared object file: No such file or directory

2001-05-11 Thread Emmanuel Discors
Hello,
Trying to install a real video server on a debian.

Thanks.
Emmanuel.

./rs8-0-linux-libc6.bin
./rs8-0-linux-libc6.bin: error while loading shared libraries:
libstdc++.so.2.8: cannot load shared object file: No such file or directory






Bug#489462: Acknowledgement (g++-4.3: Problem with #define minor -> gnu_dev_minor)

2009-02-13 Thread Picca Frédéric-Emmanuel
Hello

Do you have some news about this gnu_dev_minor problem with gcc 4.3

Thanks

Frederic



-- 
To UNSUBSCRIBE, email to debian-gcc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org