[Visual C++] prob de "symbolic information&qu

Résolu/Fermé
Pancake Messages postés 3 Date d'inscription mardi 22 mai 2007 Statut Membre Dernière intervention 3 octobre 2007 - 22 mai 2007 à 12:18
Pancake Messages postés 3 Date d'inscription mardi 22 mai 2007 Statut Membre Dernière intervention 3 octobre 2007 - 3 oct. 2007 à 23:05
Bonjour,

Je voudrais m'initier au C++ et j'ai donc installé Microsoft Visual C++ 6.0 (CD fourni avec le bouquin) sur mon système (XP sp2).
Lorsque j'écris un programme simple, genre :

#include <iostream>

int main()
{
std::cout << "TEST !!\n";

return 0;
}


...la compilation fonctionne, le build également, si je fais "exécuter", ça fonctionne aussi. Mais que je fais "go" (d'ailleurs est-ce que qqun pourrait m'expliquer la différence avec "exécuter" ?), je reçois ce message d'erreur :

Loaded 'ntdll.dll', no matching symbolic information found.
Loaded 'D:\WINDOWS\system32\kernel32.dll', no matching symbolic information found.
Loaded 'D:\WINDOWS\system32\user32.dll', no matching symbolic information found.
Loaded 'D:\WINDOWS\system32\gdi32.dll', no matching symbolic information found.
Loaded 'D:\WINDOWS\system32\imm32.dll', no matching symbolic information found.
Loaded 'D:\WINDOWS\system32\advapi32.dll', no matching symbolic information found.
Loaded 'D:\WINDOWS\system32\rpcrt4.dll', no matching symbolic information found.
Loaded 'D:\WINDOWS\system32\lpk.dll', no matching symbolic information found.
Loaded 'D:\WINDOWS\system32\usp10.dll', no matching symbolic information found.
Loaded 'D:\WINDOWS\system32\msvcrt.dll', no matching symbolic information found.
Loaded 'D:\WINDOWS\system32\uxtheme.dll', no matching symbolic information found.
Loaded 'D:\Program Files\Logitech\MouseWare\system\LgWndHk.dll', no matching symbolic information found.
Loaded 'D:\WINDOWS\system32\MSCTF.dll', no matching symbolic information found.
Loaded 'D:\Program Files\Logitech\SetPoint\lgscroll.dll', no matching symbolic information found.
Loaded 'D:\WINDOWS\system32\msvcr71.dll', no matching symbolic information found.
Loaded 'D:\WINDOWS\system32\msvcp71.dll', no matching symbolic information found.
Loaded 'D:\WINDOWS\system32\version.dll', no matching symbolic information found.
Loaded 'D:\WINDOWS\system32\MSCTFIME.IME', no matching symbolic information found.
Loaded 'D:\WINDOWS\system32\ole32.dll', no matching symbolic information found.
Loaded 'D:\Program Files\Fichiers communs\Logitech\Scrolling\LGMSGHK.DLL', no matching symbolic information found.
Loaded 'D:\WINDOWS\system32\msvcp60.dll', no matching symbolic information found.
Loaded 'D:\WINDOWS\system32\version.dll', no matching symbolic information found.
Loaded 'D:\WINDOWS\system32\oleaut32.dll', no matching symbolic information found.
The thread 0x920 has exited with code 0 (0x0).
The program 'D:\Documents and Settings\Cyrille\Mes documents\Développement C++\Debug\essai.exe' has exited with code 0 (0x0).


J'ai cherché un peu partout sur internet mais je n'ai trouvé aucune info pouvant m'aider. Il y a un programme inclus dans les outils de Visual qui s'appelle Windows NT Symbols Setup, mais lorsque je l'exécute, il affiche des messages d'erreur et je ne l'ai donc pas exécuté jusqu'au bout. J'ai aussi téléchargé un pack de PDB chez microsoft, mais je ne sais pas 1) si c'est ça le problème 2) comment dire à Visual où est installé ce pack...

Voilà si la communauté pouvait m'aider, ce serait très sympa :)
Merci d'avance
A voir également:

2 réponses

Pancake Messages postés 3 Date d'inscription mardi 22 mai 2007 Statut Membre Dernière intervention 3 octobre 2007
27 mai 2007 à 22:45
Je n'ai de mon côté toujours pas résolu le problème.
Personne n'a d'idée alors ? :-/
0
Salut,

Je ne suis pas super ferrer là dedans, mais quand tu roules le débugger, pas à pas, tu finis par voir quelques choses dans le genre?

Selon le site ci dessou, on dit que le débugger ne peut pas débugguer ces bibliothèques. Bref, je n'ai pas d'idée tout comme toi.

http://www.infos-du-net.com/forum/207911-21-ecrire-fichier

Pour répondre à ta question pour le go et le executer, voici la page de l'aide en ligne qui traite ce sujet.
https://docs.microsoft.com/en-us/previous-versions/visualstudio/visual-studio-6.0/aa242834(v=vs.60)?redirectedfrom=MSDN

Bonne chance

Jo
0
Pancake Messages postés 3 Date d'inscription mardi 22 mai 2007 Statut Membre Dernière intervention 3 octobre 2007
3 oct. 2007 à 23:05
Salut,

Merci pour ton message. En fait, ça fait un moment que j'ai abandonné cette histoire qui était pénible, j'ai changé de compilateur ;)
Je suis passé à Dev C++ puis à Visual C++ Express qui est gratuit maintenant et qui ne m'a pas posé le même problème que son prédécesseur. Le débugger fonctionne parfaitement...
Merci pour les liens, j'irai jeter un coup d'œil, c'est toujours bon pour la culture :)
0