Changeset 70554dd in mainline


Ignore:
Timestamp:
2009-02-20T15:50:36Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7aef7ee
Parents:
f32d90b
Message:

dash is not a safe character for C preprocessor, use underscore instead

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • HelenOS.config

    rf32d90b r70554dd  
    6161@ "pentium3" Pentium 3
    6262@ "core" Core Solo/Duo
    63 @ "athlon-xp" Athlon XP
    64 @ "athlon-mp" Athlon MP
     63@ "athlon_xp" Athlon XP
     64@ "athlon_mp" Athlon MP
    6565! [PLATFORM=ia32] MACHINE (choice)
    6666
     
    244244
    245245% Fences
    246 ! [PLATFORM=ia32&(MACHINE=athlon-xp|MACHINE=athlon-mp|MACHINE=pentium3)] CONFIG_FENCES_P3 (y)
     246! [PLATFORM=ia32&(MACHINE=athlon_xp|MACHINE=athlon_mp|MACHINE=pentium3)] CONFIG_FENCES_P3 (y)
    247247
    248248% Fences
     
    292292
    293293% Support for SMP
    294 ! [(PLATFORM=ia32&MACHINE!=athlon-xp)|PLATFORM=amd64|PLATFORM=sparc64|PLATFORM=ia64|(PLATFORM=mips32&MACHINE=msim)] CONFIG_SMP (y/n)
     294! [(PLATFORM=ia32&MACHINE!=athlon_xp)|PLATFORM=amd64|PLATFORM=sparc64|PLATFORM=ia64|(PLATFORM=mips32&MACHINE=msim)] CONFIG_SMP (y/n)
    295295
    296296% Improved support for hyperthreading
     
    298298
    299299% Improved support for hyperthreading
    300 ! [PLATFORM=ia32&MACHINE!=athlon-xp&MACHINE!=athlon-mp&MACHINE!=pentium3&CONFIG_SMP=y] CONFIG_HT (y/n)
     300! [PLATFORM=ia32&MACHINE!=athlon_xp&MACHINE!=athlon_mp&MACHINE!=pentium3&CONFIG_SMP=y] CONFIG_HT (y/n)
    301301
    302302% Lazy FPU context switching
  • kernel/arch/ia32/Makefile.inc

    rf32d90b r70554dd  
    4646#
    4747
    48 ifeq ($(MACHINE),athlon-xp)
     48ifeq ($(MACHINE),athlon_xp)
    4949        CMN2 = -march=athlon-xp
    5050        SUNCC_CFLAGS += -xarch=ssea
    5151endif
    52 ifeq ($(MACHINE),athlon-mp)
     52ifeq ($(MACHINE),athlon_mp)
    5353        CMN2 = -march=athlon-mp
    5454        SUNCC_CFLAGS += xarch=ssea
Note: See TracChangeset for help on using the changeset viewer.