View previous topic :: View next topic |
Author |
Message |
jecottrell
Joined: 16 Jan 2005 Posts: 559 Location: Tucson, AZ
|
PCH & Ultraedit |
Posted: Thu Apr 05, 2007 5:50 pm |
|
|
Trying to setup Ultraedit and PCH. Not having much luck after reading several of the suggested configurations.
Ultimately, I'd like to:
Have all the standard outputs put back in the directory that the source C file is in.
Get the errors back in some way so I can figure out what needs to be fixed.
BTW, I'm using UE12.20 and PCH3.249
Thanks,
John
Last edited by jecottrell on Fri Apr 06, 2007 4:26 pm; edited 2 times in total |
|
|
jecottrell
Joined: 16 Jan 2005 Posts: 559 Location: Tucson, AZ
|
|
Posted: Thu Apr 05, 2007 11:55 pm |
|
|
More info...
Win2K SP4
Command Line:
Code: | C:\Program Files\PICC\Ccsc.exe +STDOUT +FH +T +A +DF +EA +P4 "%f" |
Working Directory:
Options:
Windows Program
Save Active File
Save All Files First
Output:
Output to Listbox
Capture Output
Replace Selected Text:
No Replace
When I try to compile I get a Windows warning box with:
Error creating process
The operation completed succesfully.
I've tried the compiler from the regular desktop icon and it appears to be working.
Thanks,
John |
|
|
tavioman
Joined: 22 Feb 2006 Posts: 65
|
UltraEdit. |
Posted: Fri Apr 06, 2007 1:16 am |
|
|
Hi all.
Does UltraEdit has code completion functionality?
Currently I'm using CCS PCWH with Microsoft Visual Studio. It has a great IDE. |
|
|
treitmey
Joined: 23 Jan 2004 Posts: 1094 Location: Appleton,WI USA
|
|
Posted: Fri Apr 06, 2007 1:54 pm |
|
|
My version of UE-32 does NOT have auto-complete or "intellisense" |
|
|
treitmey
Joined: 23 Jan 2004 Posts: 1094 Location: Appleton,WI USA
|
|
Posted: Fri Apr 06, 2007 2:09 pm |
|
|
jecottrell:
It's not a windows program. UN-select that. |
|
|
jecottrell
Joined: 16 Jan 2005 Posts: 559 Location: Tucson, AZ
|
|
Posted: Fri Apr 06, 2007 4:25 pm |
|
|
A huge thank-you to Treitmey.
Here are the finer points to configuring UE to work with the command line compiler....
There is no requirement to adjust your PATH variable.
Command Line:
Code: | ccsc +STDOUT +FH +P1 +M -J +L -T -A -D "%f" |
Notes:
Ensure you use +FH, +FM, or +FB, depending on the compiler you are using.
You only need the name of the compiler program, not the path or the EXE file extension.
Working Directory:
Code: | C:\Program Files\PICC\ |
Note:
This is the path to where UE is going to find ccsc (ccsc.exe) that is referenced in the command line.
Options:
DOS Program
Save Active File
Output:
Output to Listbox
Capture Output
Replace Selected Text:
No Replace
Thanks again,
John |
|
|
jma_1
Joined: 08 Feb 2005 Posts: 147 Location: Wisconsin
|
|
Posted: Mon Apr 09, 2007 12:09 pm |
|
|
Greetings,
I do not have Ultra-Edit to test your setup. If you have difficulties with source file dependencies, try specifically adding them to the command line compiler call. Depending if you already have a project file, this might not be an issue. Most of the options listed below are the default options.
example:
ccsc.exe +STDOUT +EA -EW +FH +DF +Y9 -P +DC +J -T -Z +LNlst +o8hex I:c:\source\. c:\source\main_file
Cheers,
JMA |
|
|
|