hi,

#1

linux, sunpro:

! Building Harbour 2.0.0beta2 from source - http://www.harbour-project.org
! MAKE: make 3.81 /bin/sh   
! HB_INSTALL_PREFIX: /tmp/hbcc
! HB_HOST_PLAT: linux  HB_SHELL: sh
! HB_PLATFORM: linux (autodetected)
! HB_COMPILER: sunpro 
! Component: 'openssl' found in /usr/include
! Component: 'gpm' found in /usr/include
! Component: 'slang' found in /usr/include
! Component: 'curses' found in /usr/include
! Component: 'x11' found in /usr/include
! REVISION: 12350
[...]
../../../../../bin/linux/sunpro/harbour ../../../tpostgre.prg  
-i../../../../../include -n1 -q0 -w3 -es2 -kmo -l  
suncc  -I. -I../../../../../include  -fast -xnolibmopt -KPIC  -erroff=%none  
-I/usr/include/postgresql  -o tpostgre.o -c tpostgre.c
../../../../../bin/linux/sunpro/harbour ../../../pgrdd.prg  
-i../../../../../include -n1 -q0 -w3 -es2 -kmo -l  
suncc  -I. -I../../../../../include  -fast -xnolibmopt -KPIC  -erroff=%none  
-I/usr/include/postgresql  -o pgrdd.o -c pgrdd.c
ar   crs ../../../../../lib/linux/sunpro/libhbpgsql.a postgres.o tpostgre.o 
pgrdd.o || ( rm -f ../../../../../lib/linux/sunpro/libhbpgsql.a && false )
suncc  -I. -I../../../../../include  -fast -xnolibmopt -KPIC  -erroff=%none  
-I/usr/include/qt4 -I/usr/include/qt4/Qt -I/usr/include/qt4/QtCore 
-I/usr/include/qt4/QtGui -I/usr/include/qt4/QtNetwork 
-I/usr/include/qt4/QtWebKit  -o moc_slots.o -c ../../../moc_slots.cpp
cc: No valid input files specified, no output generated
make[3]: *** [moc_slots.o] Error 1
make[2]: *** [descend] Error 2
make[1]: *** [hbqt] Error 2
make: *** [contrib] Error 2

this looks as if suncc, when facing c++ code, didn't automagically 
know to treat is as c++ (like gcc does, for the most part). using 
HB_BUILD_MODE=cpp (ie. sunCC instead of suncc), it builds.

using gcc 4.3.3, it too builds, in both c and cpp modes.

granted, this is not core (yet), but maybe there's a way around this 
(maybe in a similar way as external/libhpdf/ explicitly switches to 
c mode).

#2

another linux, gcc 3.4.6 (version might be important) (centos 4.8):

! Building Harbour 2.0.0beta2 from source - http://www.harbour-project.org
! MAKE: make 3.81 /bin/sh   
! HB_INSTALL_PREFIX: /tmp/hb
! HB_HOST_PLAT: linux  HB_SHELL: sh
! HB_PLATFORM: linux (autodetected)
! HB_COMPILER: gcc (autodetected: /usr/bin/gcc /usr/bin/gcc /usr/bin/)
! Component: 'openssl' found in /usr/include
! Component: 'gpm' not found
! Component: 'slang' found in /usr/include/slang
! Component: 'curses' found in /usr/include
! Component: 'x11' found in /usr/include
! REVISION: 12350
[...]
../../../../../bin/linux/gcc/harbour ../../../dbgbrwsr.prg  
-i../../../../../include -n1 -q0 -w3 -es2 -kmo -l
gcc  -I. -I../../../../../include  -Wall -W -O3  -fPIC -fPIC  -odbgbrwsr.o -c 
dbgbrwsr.c
ar   crs ../../../../../lib/linux/gcc/libhbdebug.a dbgentry.o dbgmenu.o 
dbghelp.o dbgtinp.o dbgtmenu.o dbgtmitm.o dbgtwin.o debugger.o dbgtarr.o 
dbgthsh.o dbgtobj.o tbrwtext.o dbgwa.o dbgbrwsr.o || ( rm -f 
../../../../../lib/linux/gcc/libhbdebug.a && false )
gcc -shared -fPIC -L/usr/X11R6/lib  -o 
../../../../../lib/linux/gcc/libharbour-2.0.0.so @__dyn__.tmp -lncurses -lslang 
-lX11 -lrt -ldl -lm
gcc: @__dyn__.tmp: No such file or directory
make[3]: *** [libharbour-2.0.0.so] Error 1
make[2]: *** [descend] Error 2

this looks as if this gcc didn't understand @<file> (indeed, it's not 
in the manpage, whereas it is for gcc4.3.3). does this happen for 
other gcc3 (or even gcc2) platforms? os/2 people?

slightly related, i've recently started seeing stuff like this:

gcc  -I. -I../../../../../include  -Wall -W -O3  -fPIC -fPIC  -oerrintlo.o -c 
../../../errintlo.c

note double "-fPIC -fPIC". i'm not seeing anything of the sorts with 
sunpro. now it probably won't bite anything unix, but if it manifests 
itself on platforms where argument space is precious, it might be a 
problem.


-- 
[-]

mkdir /nonexistent
_______________________________________________
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to