OVH Cloud OVH Cloud

restore carte compact flash

2 réponses
Avatar
jcamigaml
Salut,

J'ai r=E9cup=E9r=E9 un source c++, a l'url=20
http://www.cs.washington.edu/homes/oskin/saveimg.html, que j'ai voulu compi=
l=E9=20
comme=20
gcc saveimg.cxx -o saveimg
mais j'ai le message suivant :

/tmp/cc9xORP4.o(.eh_frame+0x11): undefined reference to `__gxx_personality_=
v0'
collect2: ld a retourn=E9 1 code d'=E9tat d'ex=E9cution

A priori il me manque une librairie mais laquelle ?

C'est un programme pour essay=E9 retor=E9 des images perdues sur une compac=
t=20
flash.

2 réponses

Avatar
kolter
Le Mardi 22 Février 2005 22:49, a écrit :
Salut,

J'ai récupéré un source c++, a l'url
http://www.cs.washington.edu/homes/oskin/saveimg.html, que j'ai voulu
compilé comme
gcc saveimg.cxx -o saveimg


c'est du c++ donc
g++ saveimg.cxx -o saveimg

et ça marchera nickel, en tout cas chez moi ça compile ...

M.

--
Emmanuel Bouthenot (aka Kolter)
MAIL : free.fr / kolter (at)
GPG : 0x414EC36E
WWW : http://kolter.free.fr
JABBER : amessage.de / kolter (at)
Avatar
jcamigaml
Le Mardi 22 Février 2005 23:11, kolter a écrit :
Le Mardi 22 Février 2005 22:49, a écrit :
> Salut,
>
> J'ai récupéré un source c++, a l'url
> http://www.cs.washington.edu/homes/oskin/saveimg.html, que j'ai voulu
> compilé comme
> gcc saveimg.cxx -o saveimg

c'est du c++ donc
g++ saveimg.cxx -o saveimg

et ça marchera nickel, en tout cas chez moi ça compile ...

M.


Merci beaucoup
Ca a fonctionner chez moi.