Changeset e16e036a in mainline for Makefile.config


Ignore:
Timestamp:
2005-11-07T20:04:30Z (20 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c4e8ed9d
Parents:
d90ca68
Message:

major build system revision (unfinished)
this patchset most definitively breaks a lot of things, be patient

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile.config

    rd90ca68 re16e036a  
    1 #ARCH=ia32
    2 #ARCH=mips32
    3 #ARCH=ia64
    4 #ARCH=ppc32
    5 #ARCH=amd64
    6 #ARCH=sparc64
     1## General configuration directives
     2#
     3# CONFIG_SMP (n/y)
     4#       Support for symetric multiprocessors
     5#
     6# CONFIG_HT (n/y)
     7#       Improved support for hyperthreading
     8#
     9# CONFIG_FPU_LAZY (n/y)
     10#       Lazy context switching
     11#
    712
    8 # If this is yes, then the native compiler will be used instead of cross compiler
    9 NATIVE_COMPILER=no
     13CONFIG_SMP = y
     14CONFIG_HT = y
     15CONFIG_FPU_LAZY = y
    1016
    11 # If this is yes, strong CPU ordering is assumed
    12 STRONG_ORDERING=no
     17## Debugging configuration directives
     18#
     19# CONFIG_DEBUG (n/y)
     20#       General debuging and assert checking
     21#
     22# CONFIG_DEBUG_SPINLOCK (n/y)
     23#       Deadlock detection support for spinlocks
     24#
    1325
    14 # Support for symetric multiprocessors
    15 SMP=__SMP__
    16 
    17 # Improved support for hyperthreading
    18 HT=__HT__
    19 
    20 # General debuging and assert checking disable
    21 #NDEBUG=__NDEBUG__
    22 
    23 # Deadlock detection support for spinlocks.
    24 DEBUG_SPINLOCK=DEBUG_SPINLOCK
    25 
    26 # Uncomment if you want to compile in userspace support
    27 #USERSPACE=__USERSPACE__
    28 
    29 # Uncomment if you want to run in the test mode
    30 #TEST=__TEST__
    31 
    32 TEST_FILE=test.c
    33 
    34 # Select what test do you want to run
    35 #TEST_DIR=synch/rwlock1/
    36 #TEST_DIR=synch/rwlock2/
    37 #TEST_DIR=synch/rwlock3/
    38 #TEST_DIR=synch/rwlock4/
    39 #TEST_DIR=synch/rwlock5/
    40 #TEST_DIR=synch/semaphore1/
    41 #TEST_DIR=synch/semaphore2/
    42 #TEST_DIR=fpu/fpu1/
    43 #TEST_DIR=fpu/sse1/
    44 #TEST_DIR=fpu/mips1/
    45 #TEST_DIR=print/print1/
    46 #TEST_DIR=thread/thread1/
    47 #TEST_DIR=mm/mapping1/
     26CONFIG_DEBUG = n
     27CONFIG_DEBUG_SPINLOCK = y
Note: See TracChangeset for help on using the changeset viewer.