c 4: -------------------------------------------------------------------------------- Hi Stefan,
I followed the example from the help file, there was no mention of the filename and after all, the file is open. The help really does not help at all, so could someone with a working GCC/Cygwin connection tell me his settings/parameters ? -------------------------------------------------------------------------------- "The file is open...." aber du musst trotzdem beim Compileraufruf die gewünschte Datei als Parameter übergeben, so wie VBR es zeigt, z.B. mit %File% Wie die Parameter deines Compilers sind musst du schon selbst wissen, oder in einem Programmer-Forum nachfragen. Oder such' einfach mit Google: http://www.lcs-chemie.de/c_comp.htm Compiler: cmd.exe Parameter /C "set PATH=%PATH%;D:\cygwin\bin\; & g++ %File%" - Tipp: es reicht wenn der PATH nur 1x in den Umgebungsvariablen gesetzt wird, und nicht jedesmal temporär beim Programmstart. Siehe auch: http://www.cpp-tutor.de/cpp/le01/le01_01.htm http://tutorial.schornboeck.net/windows_comp.htm ---------------------------------------------------------- ---------------------------------------------------------- Du kannst als Compiler auch eine Batch starten: MyCompiler.CMD @ECHO OFF D: CD cygwin\bin g++ "%1" --- Aufruf Compiler: MyCompiler.CMD Parameter: %File% ---------------------------------------------------------- ---------------------------------------------------------- Weitere Links zum Lernen: http://informatik.unibas.ch/lehre/ss07/cs104/_Downloads/9-cs104-C%2B%2BEntwicklu ng.pdf http://www.bs.informatik.uni-siegen.de/www/lehre/ss05/pv/EinfuehrungC_Cplusplus. pdf http://www.rrzn.uni-hannover.de/fileadmin/buecher/umdrucke/CPlus_Handbuch/progra mmablauf.pdf -- greets, Stefan [img]http://pspad.milten.lima-city.de/Fan.gif[/img] (pleased user since 1722) [url=http://tinyurl.com/52xrj]inofficial FAQs[/url] + [url=http://forum.pspad.com/read.php?2,16286,page=2]Infos[/url] + [url=http://forum.pspad.com/read.php?6,24628]Special Settings[/url] <http://forum.pspad.com/read.php?2,45503,45623> PSPad freeware editor http://www.pspad.com
