where i found compiled units(all) in /djgpp/lib/gcc-lib/djgpp/2.952/units/*.pas
and/or
how i can compile all units in /djgpp/lib/gcc-lib/djgpp/2.952/units/*.pas
thanks. _________________________________________________ Haluk DUMAN Electric-Electronic Engineer Email: HalukDUMAN@go.to, HalukDUMAN@come.to (* Sorry for my English ; How can I help you? *)
Haluk DUMAN wrote:
where i found compiled units(all) in /djgpp/lib/gcc-lib/djgpp/2.952/units/*.pas
and/or
how i can compile all units in /djgpp/lib/gcc-lib/djgpp/2.952/units/*.pas
E.g.:
gpc --automake -Wall -O2 -c *.pas
(you'll get a warning about gpc-bp.pas if it's in the directory, but it doesn't matter).
However, I suggest not to do so, but just to use --automake when compiling your programs, so GPC will compile the units when necessary.
Frank