Pelles C forum

Pelles C => General discussions => Topic started by: post from old forum on September 13, 2004, 09:36:44 PM

Title: Cmd
Post by: post from old forum on September 13, 2004, 09:36:44 PM
Not used to using the command line options, trying with the following line
pocc -W1 -Ot -Gz -Ze -Tx86-coff filename

pocc is seeing include files (headers) from other compilers on my drive and reporting errors.

Suggestions anyone?

JohnF
Title: Cmd
Post by: post from old forum on September 13, 2004, 09:37:09 PM
To have complete control, add:
-X
(will not search the current #include directories)

-I<include path>
(will search the specified #include directory - you can use several -I options...)

You can also try running POVARS32.BAT from the PellesC Bin directory - this will update the PATH, INCLUDE and LIB environment variables.

Pelle