Changes between Initial Version and Version 1 of Ticket #5191


Ignore:
Timestamp:
Jan 4, 2010, 3:40:53 PM (14 years ago)
Author:
axeld
Comment:

First of all, you should use Haiku's version of "jam". Does that already help?

BTW, please use {{{ and }}} to indicate preformatted text (the Jamfile quotes). I've updated the description to use it already.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #5191 – Description

    initial v1  
    4444
    4545IMHO, problems in build/jam/BuildSetup:[[BR]]
    46  if $(HAIKU_HOST_USE_32BIT) = 1 {[[BR]]
    47         # enable GCC -m32 option[[BR]]
    48         HOST_GCC_BASE_FLAGS = -m32 ;[[BR]]
    49 } else {[[BR]]
    50         switch $(HOST_GCC_MACHINE) {[[BR]]
    51                 case x86_64-*   : HOST_PLATFORM_IS_64_BIT = 1 ;[[BR]]
    52                 case i686-apple-darwin10        :[[BR]]
    53                         HOST_PLATFORM_IS_64_BIT = 1 ;[[BR]]
    54         }[[BR]]
    55  }[[BR]]
     46{{{
     47if $(HAIKU_HOST_USE_32BIT) = 1 {
     48        # enable GCC -m32 option
     49        HOST_GCC_BASE_FLAGS = -m32 ;
     50} else {
     51        switch $(HOST_GCC_MACHINE) {
     52                case x86_64-*   : HOST_PLATFORM_IS_64_BIT = 1 ;
     53                case i686-apple-darwin10        :
     54                        HOST_PLATFORM_IS_64_BIT = 1 ;
     55        }
     56 }
     57}}}
    5658Why "else"?[[BR]]
    5759[[BR]]