Changeset 4e9aaf5 in mainline for kernel/arch/ia32


Ignore:
Timestamp:
2010-03-19T18:30:12Z (16 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8023571, b535aeb, e2b73d4f
Parents:
3c80f2b
Message:

more autotooling: run actually the compiler in autotool.py and detect sizes of integers, generate common.h
more build system cleanup: remove redundancy, remove config.defs, merge kernel makefiles to a single file

Location:
kernel/arch/ia32
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ia32/Makefile.inc

    r3c80f2b r4e9aaf5  
    4848        SUNCC_CFLAGS += -xarch=ssea
    4949endif
     50
    5051ifeq ($(PROCESSOR),athlon_mp)
    5152        CMN2 = -march=athlon-mp
    5253        SUNCC_CFLAGS += xarch=ssea
    5354endif
     55
    5456ifeq ($(PROCESSOR),pentium3)
    5557        CMN2 = -march=pentium3
    5658        SUNCC_CFLAGS += -xarch=sse
    5759endif
     60
    5861ifeq ($(PROCESSOR),pentium4)
    5962        CMN2 = -march=pentium4
    6063        SUNCC_CFLAGS += -xarch=sse2
    6164endif
     65
    6266ifeq ($(PROCESSOR),core)
    6367        CMN2 = -march=prescott
  • kernel/arch/ia32/include/types.h

    r3c80f2b r4e9aaf5  
    2727 */
    2828
    29 /** @addtogroup ia32   
     29/** @addtogroup ia32
    3030 * @{
    3131 */
     
    3636#define KERN_ia32_TYPES_H_
    3737
    38 typedef signed char int8_t;
    39 typedef signed short int16_t;
    40 typedef signed long int32_t;
    41 typedef signed long long int64_t;
    42 
    43 typedef unsigned char uint8_t;
    44 typedef unsigned short uint16_t;
    45 typedef unsigned long uint32_t;
    46 typedef unsigned long long uint64_t;
     38#include <arch/common.h>
    4739
    4840typedef uint32_t size_t;
Note: See TracChangeset for help on using the changeset viewer.