On Fri, 13 Mar 2009, Szak�ts Viktor wrote:
> I've tried to use this script (very unclean, I know):
> set
> PATH=C:\devl\msys\1.0.11\bin;C:\devl\a\opt\mingw32ce\arm-wince-mingw32ce\bin;C:\devl\a\opt\mingw32ce\libexec\gcc\arm-wince-mingw32ce\4.1.0\;%PATH%
> set CCPATH=C:\devl\a\opt\mingw32ce\arm-wince-mingw32ce\bin

Not of the above is correct.
In C:\devl\a\opt\mingw32ce\arm-wince-mingw32ce\bin you have ARM WinCE
binaries.
In C:\devl\a\opt\mingw32ce\libexec\gcc\arm-wince-mingw32ce\4.1.0\
are GCC binaries which does not have to be in PATH. They are internally
accessed by x86 binaries.
x86 binaries are in C:\devl\a\opt\mingw32ce\bin directory.
and only this directory you should have in the PATH.
I hope that windows binaries are relocatable and you do not have to
install them in /opt directory. They should be but I'm not sure.

set CCPATH=/c/devl/a/opt/mingw32ce/bin

is enough.

> rem
> set HB_COMPILER=mingwce
> rem
> set HB_BIN_COMPILE=/c/devl/hbvc-1.1/bin

This is internal variables fortunately overwritten. Otherwise you'd lost
/c/devl/hbvc-1.1/bin directory.
I guess you want to set HB_COMP_PATH. It's necessary only if you do not
want to use native binaries from Harbour source tree created by gcc (MinGW
in Windows). In such case you should set full path with file name to harbour
compiler, f.e.;
   set HB_COMP_PATH=/c/devl/hbvc-1.1/bin/harbour.exe

> set HB_PPGEN_PATH=%HB_BIN_COMPILE%

as above. Necessery only if you do not want to use native binaries from
Harbour source tree. Shuld have full path with hbpp file name.

> rem this doesn't seem to work
> set INCLUDE=/c/devl/a/opt/mingw32ce/arm-wince-mingw32ce/include
> set LIB=/c/devl/a/opt/mingw32ce/arm-wince-mingw32ce/lib

Neither INCLUDE nor LIB are GCC envvars. Please remove them.

> set HB_USER_CFLAGS=-I/c/devl/a/opt/mingw32ce/arm-wince-mingw32ce/include
> set HB_USER_LDFLAGS=-L/c/devl/a/opt/mingw32ce/arm-wince-mingw32ce/lib

They are not necessary. If GCC does not detect installation PATH then
the above does not help too.

> rem
> set HB_INSTALL_PREFIX=/c/devl/hb%HB_COMPILER%-1.1-test
> sh make_gnu_xmingwce.sh -i install > out.txt 2>&1
> ---
> I got:
> ---
> cegcc compiler executable not found. Ensure you have cegcc package installed
> in
> /opt/mingw32ce dir, or (alternatively) set environment variable CCPATH to a
> cegcc
> installation directory
> ---

Because you haven't set valid directory in CCPATH.

best regards,
Przemek
_______________________________________________
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to