Subversion Repositories HelenOS-historic

Rev

Rev 397 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 397 Rev 418
1
#ARCH=ia32
1
#ARCH=ia32
2
#ARCH=mips32
2
#ARCH=mips32
3
#ARCH=ia64
3
#ARCH=ia64
4
#ARCH=ppc32
4
#ARCH=ppc32
5
#ARCH=amd64
5
#ARCH=amd64
-
 
6
#ARCH=sparc64
6
 
7
 
7
# If this is yes, then the native compiler will be used instead of cross compiler
8
# If this is yes, then the native compiler will be used instead of cross compiler
8
NATIVE_COMPILER=no
9
NATIVE_COMPILER=no
9
 
10
 
10
# Support for symetric multiprocessors
11
# Support for symetric multiprocessors
11
SMP=__SMP__
12
SMP=__SMP__
12
 
13
 
13
# Improved support for hyperthreading
14
# Improved support for hyperthreading
14
HT=__HT__
15
HT=__HT__
15
 
16
 
16
# General debuging and assert checking disable
17
# General debuging and assert checking disable
17
#NDEBUG=__NDEBUG__
18
#NDEBUG=__NDEBUG__
18
 
19
 
19
# Deadlock detection support for spinlocks.
20
# Deadlock detection support for spinlocks.
20
DEBUG_SPINLOCK=DEBUG_SPINLOCK
21
DEBUG_SPINLOCK=DEBUG_SPINLOCK
21
 
22
 
22
# Uncomment if you want to compile in userspace support
23
# Uncomment if you want to compile in userspace support
23
#USERSPACE=__USERSPACE__
24
#USERSPACE=__USERSPACE__
24
 
25
 
25
# Uncomment if you want to run in the test mode
26
# Uncomment if you want to run in the test mode
26
#TEST=__TEST__
27
#TEST=__TEST__
27
 
28
 
28
TEST_FILE=test.c
29
TEST_FILE=test.c
29
 
30
 
30
# Select what test do you want to run
31
# Select what test do you want to run
31
#TEST_DIR=synch/rwlock1/
32
#TEST_DIR=synch/rwlock1/
32
#TEST_DIR=synch/rwlock2/
33
#TEST_DIR=synch/rwlock2/
33
#TEST_DIR=synch/rwlock3/
34
#TEST_DIR=synch/rwlock3/
34
#TEST_DIR=synch/rwlock4/
35
#TEST_DIR=synch/rwlock4/
35
#TEST_DIR=synch/rwlock5/
36
#TEST_DIR=synch/rwlock5/
36
#TEST_DIR=synch/semaphore1/
37
#TEST_DIR=synch/semaphore1/
37
#TEST_DIR=synch/semaphore2/
38
#TEST_DIR=synch/semaphore2/
38
#TEST_DIR=fpu/fpu1/
39
#TEST_DIR=fpu/fpu1/
39
#TEST_DIR=fpu/sse1/
40
#TEST_DIR=fpu/sse1/
40
#TEST_DIR=fpu/mips1/
41
#TEST_DIR=fpu/mips1/
41
#TEST_DIR=print/print1/
42
#TEST_DIR=print/print1/
42
#TEST_DIR=thread/thread1/
43
#TEST_DIR=thread/thread1/
43
#TEST_DIR=mm/mapping1/
44
#TEST_DIR=mm/mapping1/
44
 
45