| delorie.com/archives/browse.cgi | search |
| From: | "DoLL" <jbdoll AT kepri DOT re DOT kr> |
| Newsgroups: | comp.os.msdos.djgpp |
| Subject: | Re: pcGRASP setup, compiling, front-ends, and just being a newbie in general |
| Date: | Tue, 22 Jun 1999 09:52:02 +0900 |
| Organization: | System Engineering Research Institute (SERI) |
| Lines: | 54 |
| Message-ID: | <7kmmt6$iam$1@green.kreonet.re.kr> |
| References: | <19990621194306 DOT 17262 DOT 00000493 AT ng-fk1 DOT aol DOT com> |
| NNTP-Posting-Host: | cyberdog.kepri.re.kr |
| X-Newsreader: | Microsoft Outlook Express 4.72.3110.5 |
| X-MimeOLE: | Produced By Microsoft MimeOLE V4.72.3110.3 |
| To: | djgpp AT delorie DOT com |
| DJ-Gateway: | from newsgroup comp.os.msdos.djgpp |
| Reply-To: | djgpp AT delorie DOT com |
I think pcGrasp is a GOOD ide!
[File]-[Global Preferences...]
Sample Setup for C :
<Workspace/Compilers> Tab
- Add
- Compiler Environment : (GNU) C or Something like that...
- Compile Only : gcc -c "%F"
- Compile/Link : gcc "%F" -o %f.exe
- Debug : gdb %f (if you have gdb installed)
- Semantic : gcc -fsyntax-only "%F" --> Grammer Check. I couldn't find the
option
- Run : %f
- Environment (My DJGPP is installed in E:\GCC)
+ Add
++ Name of Variable : DJGPP
++ Value of Variable : E:\GCC\DJGPP.ENV
+ Add
++ Name of Variable : PATH
++ Value of Variable : E:\GCC\BIN
+ Add
++ Name of Variable : PATH
++ Value of Variable : E:\GCC\BIN
Sample Setup for C++ :
<Workspace/Compilers> Tab
- Add
- Compiler Environment : (GNU) C++ or Something like that...
- Compile Only : gcc -c "%F"
- Compile/Link : gxx "%F" -o %f.exe
- Debug : gdb %f (if you have gdb installed)
- Semantic : gxx -fsyntax-only "%F" --> Grammer Check. I couldn't find the
option
- Run : %f
- Environment (My DJGPP is installed in E:\GCC)
+ Add
++ Name of Variable : DJGPP
++ Value of Variable : E:\GCC\DJGPP.ENV
+ Add
++ Name of Variable : PATH
++ Value of Variable : E:\GCC\BIN
+ Add
++ Name of Variable : PATH
++ Value of Variable : E:\GCC\BIN
And if you prefer emacs,
you can download precompiled versions in
ftp://ftp.cs.washington.edu/pub/ntemacs/.
Good Luck!
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |