Changeset 941d1e9 in mainline for arch/ia32/Makefile.inc


Ignore:
Timestamp:
2005-09-29T22:47:42Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
922c7ce
Parents:
40a468a
Message:

Make cross-compiler the default compiler on IA-32.
For native compilations, use ./build.ia32 native.

Small changes elsewhere.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/ia32/Makefile.inc

    r40a468a r941d1e9  
    1 ifeq (${CROSS_COMPILER},yes)
     1ifeq (${NATIVE_COMPILER},yes)
     2        CC=gcc
     3        AS=as
     4        LD=ld
     5        OBJCOPY=objcopy
     6        OBJDUMP=objdump
     7else
    28        IA-32_TARGET=i686-pc-linux-gnu
    39
     
    1016        OBJCOPY=$(IA-32_BINUTILS_DIR)/$(IA-32_TARGET)-objcopy
    1117        OBJDUMP=$(IA-32_BINUTILS_DIR)/$(IA-32_TARGET)-objdump
    12 else
    13         CC=gcc
    14         AS=as
    15         LD=ld
    16         OBJCOPY=objcopy
    17         OBJDUMP=objdump
    1818endif
    1919
Note: See TracChangeset for help on using the changeset viewer.