Bonjour,
j'apprends le C et j'ai t�l�charg� Code::Blocks 8.02 en App portable.
Je poss�dais d�j� un compilateur C qui se trouve �tre Watcom 1.3 qui avait �t� install� par Maple.
J'ai donc voulu faire un petit programme pour m'exercer, j'ai cr�� un nouveau projet "console application" et j'ai choisi OpenWatcom pour le compilateur.
J'ai gard� le code basique affichant Hello World pour voir s'il marchait.
Je me suis rendu compte que Code::Blocks n'avait pas trouv� les ex�cutables de Watcom car il m'affichait "uses an invalid compiler" lorsque je voulais faire un build. Du coup je suis all� dans Settings -> Compiler and Debugger et j'ai modifier les adresses.
Cependant, maintenant lorsque je veux faire un build, il m'affiche le message suivant dans la partie inf�rieure de la fen�tre :
Du coup, je ne comprends pas trop ce qu'il veut dire et c'est pourquoi je vous appelle � l'aide!
Code : S�lectionner tout - Visualiser dans une fen�tre � part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 -------------- Build: Debug in TP123 --------------- Compiling: main.c Open Watcom C/C++32 Compile and Link Utility Version 1.3 Portions Copyright (c) 1988-2002 Sybase, Inc. All Rights Reserved. Source code is available under the Sybase Open Watcom Public License. See http://www.openwatcom.org/ for details. wcc386 main.c -q -Wall -g -iC:\Applications\Watcom-1.3\h -iC:\Applications\Watcom-1.3\h\nt -fo=obj\Debug\main.obj Open Watcom C32 Optimizing Compiler Version 1.3 Portions Copyright (c) 1984-2002 Sybase, Inc. All Rights Reserved. Source code is available under the Sybase Open Watcom Public License. See http://www.openwatcom.org/ for details. Error! E1073: Invalid option '-q' Error! E1073: Invalid option '-Wall' main.c: 8 lines, included 1199, 0 warnings, 2 errors Error: Compiler returned a bad status compiling 'main.c' Process terminated with status 1 (0 minutes, 0 seconds) 0 errors, 0 warnings
Partager