Changeset 9060bd1 in mainline for src


Ignore:
Timestamp:
2005-09-10T11:20:47Z (20 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
24241cf
Parents:
f3a6c8e5
Message:

IA-32 can be now cross-compiled by ./build.ia32 cross.
Unify IA-32 Makefile.inc and Makefile.inc.cross.

Update doc/requirements.

Small changes elsewere.

Location:
src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/Makefile.config

    rf3a6c8e5 r9060bd1  
    44#ARCH=ppc
    55#ARCH=amd64
     6
     7# If this is yes, then cross compiler will be used instead of host compiler
     8CROSS_COMPILER=no
    69
    710# Support for symetric multiprocessors
  • src/build.ia32

    rf3a6c8e5 r9060bd1  
    11#! /bin/sh
    22
    3 make all ARCH=ia32
     3COMPILER=""
     4
     5if [ $1 == "cross" ];
     6then
     7        COMPILER="CROSS_COMPILER=yes";
     8fi;
     9
     10make all ARCH=ia32 $COMPILER
Note: See TracChangeset for help on using the changeset viewer.