problème installation compilateur - Programmation
Marsh Posté le 15-07-2001 à 02:30:33
regarde ce site c'est bien explique http://www.developpez.com/glouise/BC55demarrage.htm 
@ 
Marsh Posté le 15-07-2001 à 05:53:37
Bon, j'ai tout bien fait comme il faut ... et quand je veux compiler l'exemple qu'ils donnent ... je tape "c", et ça me met : 
c:\Borland\Bcc55\Green>bcc32 -I..\include -L..\lib prg 
Commande ou nom du fichier incorrect 
Marsh Posté le 15-07-2001 à 21:56:10
salut 
 bon je dbute dans la prog voila comment moi je l'ai installe si ca peut t'aider 
tu instal le compilateur dans c:\Borland\Bcc5.5 (option par default) 
tu rajoutes cette ligne a ton autoexec.bat 
path=c:\Borland\Bcc55\bin  
ensuite tu faits un fichier Bcc32.cfg 
               -I"c:\Borland\Bcc55\include"  
               -L"c:\Borland\Bcc55\lib"  
tu l'enregistre dans c:\Borland\Bcc55 
ensuite tu faits un fichier ilink32.cfg 
               -L"c:\Borland\Bcc55\include"  
tu l'enregistre dans c:\Borland\Bcc55 
apres por lancer le compilo tu devras juste faire un bat bcc32 
j'espere que ca t'aidera  
@+ 
Marsh Posté le 16-07-2001 à 04:00:21
comment je fais un .cfg ? 
et pour faire un bat pour lancer bcc32 ? je met quoi dans le bat ? et je le met ds quel répértoire ? 
Marsh Posté le 16-07-2001 à 17:13:35
Tu crées un fichier texte nommé bcc32.cfg (tu sais créer un fichier texte et le renommer quand même ?) et dedans tu ajoutes : 
 
| Citation :   | 
 
 
Evidemment, tu changes le path si tu as installé Borland ailleurs ... 
Ce fichier, tu le places dans le répertoire bin. 
 
Ensuite, tu crées un deuxième fichier texte nommé ilink32.cfg, à placer également dans le répertoire bin. Tu ajoutes le texte suivant : 
 
| Citation :   | 
 
 
Et n'oublie pas d'ajouter "c:\Borland\Bcc55"  dans le path mais également "c:\Borland\Bcc55\bin" !! 
 
Si tu es sous win9x, tu rebootes (pas besoin sous win2k, gnark !), tu ouvres une fenêtre DOS et dedans tu tapes : bcc32 
 
Si tu as un message d'erreur qui t'indique que bcc32 est inconnu, vérifie tout depuis zéros ! et tes paths surtout !
[edtdd]--Message édité par Belegar--[/edtdd]
Marsh Posté le 14-07-2001 à 22:11:18
luté, alors voilà, j'ai installé Borland C++, et dans le readme, ils mettent ça ... mais je comprends pas:
1. Run freecommandlinetools.exe; choose the
drive and folder into which you want to
install the free C++Builder 5 command line
tool development system.
2. From the bin directory of your installation:
a. Add "c:\Borland\Bcc55"
to the existing path
b. Create a bcc32.cfg file which will set
the compiler options for the Include
and Lib paths (-I and -L switches to
compiler) by adding these lines:
-I"c:\Borland\Bcc55\include"
-L"c:\Borland\Bcc55\lib"
c. Create an ilink32.cfg file which will set
the linker option for the Lib path by
adding this line:
-L"c:\Borland\Bcc55\lib"