On Wed, 16 Sep 2009, dru...@users.sourceforge.net wrote:

 >   * harbour/config/beos/libs.mk
 >     ! do not set explicitly GCC internal library paths.
 >       They are configured in GCC config and should not be overloaded
 >       in normal builds.

yes, right, thanks (and for the others too).

a word of warning to anyone who plans tackling haiku, when logged in 
via ssh, you get a substantially different environment compared to 
what you get when in a terminal window (and these differences do skew 
hb builds).

 >    TOFIX: error code are not properly decoded in HAIKU/BEOS builds.
 >           It can be seen in hbtest results. It's possible that it's
 >           HAIKU/BEOS problem not Harbour one.

do you mean errnos? if so, it seems they are doing this in a different 
way. could it not be perhaps that on posix, error codes tend to fit in 
int, whereas on haiku, they apparently don't, and something overflows 
and gets truncated?

that seems to be supported by this:

this from hbtest on haiku:

! 3655 MAIN_MISC(815)  __CopyFile("$$COPYFR.TMP", BADFNAME())
       Result: "E 20 BASE 2012 Create error <*INVALID/*.> OS:24579 #:1 F:DR"
     Expected: "E 20 BASE 2012 Create error <*INVALID/*.> OS:2 #:1 F:DR"

now if i'm not mistaken, the expected os:2 would be ENOENT, whereas 
the actual result of 24579 is 2147508227-2^31, where 2147508227 is 
ENOENT in haiku world. this must be an integer truncation someplace. 

anyway. reading http://www.haiku-os.org/docs/userguide/en/filesystem-layout.html
this, it seems that the following is a better fit for haiku (it's 
unclear to me whether it is also the case for beos or not) than 
/usr/local.

Index: config/global.mk
===================================================================
--- config/global.mk    (revision 12503)
+++ config/global.mk    (working copy)
@@ -1127,7 +1127,9 @@
    # Fill it automatically if not specified
    ifeq ($(HB_INSTALL_PREFIX),)
 
-      ifeq ($(HB_PLATFORM_UNIX),)
+      ifeq ($(HB_PLATFORM),beos)
+         HB_INSTALL_PREFIX := /boot/common
+      else ifeq ($(HB_PLATFORM_UNIX),)
          HB_INSTALL_PREFIX := $(realpath $(TOP)$(ROOT))
       else
          ifneq ($(PREFIX),)
@@ -1177,7 +1179,10 @@
 
 ifneq ($(HB_INSTALL_PREFIX),)
 
-   ifeq ($(HB_PLATFORM_UNIX),)
+   ifeq ($(HB_PLATFORM),beos)
+      LIBPOSTFIX := $(DIRSEP)harbour
+      INCPOSTFIX := $(DIRSEP)harbour
+   else ifeq ($(HB_PLATFORM_UNIX),)
       LIBPOSTFIX := $(DIRSEP)$(subst /,$(DIRSEP),$(PLAT_COMP))
    else
       # Not perfect, please enhance it.



-- 
[-]

mkdir /nonexistent
Index: config/global.mk
===================================================================
--- config/global.mk    (revision 12503)
+++ config/global.mk    (working copy)
@@ -1127,7 +1127,9 @@
    # Fill it automatically if not specified
    ifeq ($(HB_INSTALL_PREFIX),)
 
-      ifeq ($(HB_PLATFORM_UNIX),)
+      ifeq ($(HB_PLATFORM),beos)
+         HB_INSTALL_PREFIX := /boot/common
+      else ifeq ($(HB_PLATFORM_UNIX),)
          HB_INSTALL_PREFIX := $(realpath $(TOP)$(ROOT))
       else
          ifneq ($(PREFIX),)
@@ -1177,7 +1179,10 @@
 
 ifneq ($(HB_INSTALL_PREFIX),)
 
-   ifeq ($(HB_PLATFORM_UNIX),)
+   ifeq ($(HB_PLATFORM),beos)
+      LIBPOSTFIX := $(DIRSEP)harbour
+      INCPOSTFIX := $(DIRSEP)harbour
+   else ifeq ($(HB_PLATFORM_UNIX),)
       LIBPOSTFIX := $(DIRSEP)$(subst /,$(DIRSEP),$(PLAT_COMP))
    else
       # Not perfect, please enhance it.
_______________________________________________
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to