Subversion Repositories HelenOS-historic

Rev

Rev 460 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 460 Rev 468
Line 47... Line 47...
47
## Accepted CPUs
47
## Accepted CPUs
48
#
48
#
49
 
49
 
50
ifeq ($(CPU),athlon-xp)
50
ifeq ($(CPU),athlon-xp)
51
	CFLAGS += -march=athlon-xp -mmmx -msse -m3dnow
51
	CFLAGS += -march=athlon-xp -mmmx -msse -m3dnow
52
	DEFS += -DFENCES=p3
52
	DEFS += -DCONFIG_FENCES_P3
53
	CONFIG_SMP = n
53
	CONFIG_SMP = n
54
	CONFIG_HT = n
54
	CONFIG_HT = n
55
endif
55
endif
56
ifeq ($(CPU),athlon-mp)
56
ifeq ($(CPU),athlon-mp)
57
	CFLAGS += -march=athlon-mp -mmmx -msse -m3dnow
57
	CFLAGS += -march=athlon-mp -mmmx -msse -m3dnow
58
	DEFS += -DFENCES=p3
58
	DEFS += -DCONFIG_FENCES_P3
59
	CONFIG_HT = n
59
	CONFIG_HT = n
60
endif
60
endif
61
ifeq ($(CPU),pentium3)
61
ifeq ($(CPU),pentium3)
62
	CFLAGS += -march=pentium3 -mmmx -msse
62
	CFLAGS += -march=pentium3 -mmmx -msse
63
	DEFS += -DFENCES=p3
63
	DEFS += -DCONFIG_FENCES_P3
64
	CONFIG_HT = n
64
	CONFIG_HT = n
65
endif
65
endif
66
ifeq ($(CPU),prescott)
66
ifeq ($(CPU),prescott)
67
	CFLAGS += -march=pentium4 -mfpmath=sse -mmmx -msse -msse2 -msse3
67
	CFLAGS += -march=pentium4 -mfpmath=sse -mmmx -msse -msse2 -msse3
68
	DEFS += -DFENCES=p4
68
	DEFS += -DCONFIG_FENCES_P4
69
endif
69
endif
70
ifeq ($(CPU),pentium4)
70
ifeq ($(CPU),pentium4)
71
	CFLAGS += -march=pentium4 -mfpmath=sse -mmmx -msse -msse2
71
	CFLAGS += -march=pentium4 -mfpmath=sse -mmmx -msse -msse2
72
	DEFS += -DFENCES=p4
72
	DEFS += -DCONFIG_FENCES_P4
73
endif
73
endif
74
 
74
 
75
## Own configuration directives
75
## Own configuration directives
76
#
76
#
77
 
77