Mercurial > hg > Members > kono > Cerium
comparison lib/tasks.xml @ 329:7839cb3e928f
add task/config/tasks.xml lib/tasks.xml
author | aaa |
---|---|
date | Fri, 12 Jun 2009 15:29:27 +0900 |
parents | |
children | f88c350bb7b1 |
comparison
equal
deleted
inserted
replaced
328:bd3690d8cd7c | 329:7839cb3e928f |
---|---|
1 <!-- Cerium Task Configuration | |
2 CPU_PPE = 0, // default | |
3 CPU_SPE = 1, | |
4 SPE_ANY = CPU_SPE, | |
5 SPE_0 = 2, | |
6 SPE_1 = 3, | |
7 SPE_2 = 4, | |
8 SPE_3 = 5, | |
9 SPE_4 = 6, | |
10 SPE_5 = 7, | |
11 --> | |
12 | |
13 <cc name="spu-g++"> | |
14 <compiler> | |
15 <command> spu-g++ </command> | |
16 <flag> -O9 -g -Wall -fno-exceptions -fno-rtti </flag> | |
17 <flag> -I../${CERIUM}/include/TaskManager -I. -I.. </flag> | |
18 </compiler> | |
19 <linker> | |
20 <command> spu-g++ </command> | |
21 <flag> -L../${CERIUM}/TaskManager -lspemanager </flag> | |
22 </linker> | |
23 </cc> | |
24 | |
25 <cc name="ppu-g++"> | |
26 <compiler> | |
27 <command> g++ </command> | |
28 <flag> -g -Wall -O9 </flag> | |
29 <flag> -I${CERIUM}/include/TaskManager -I. -I.. </flag> | |
30 </compiler> | |
31 <linker> | |
32 <command> g++ </command> | |
33 <flag> -L${CERIUM}/TaskManager </flag> | |
34 <flag> -lCellManager -lspe2 -lpthread -Wl,--gc-sections </flag> | |
35 </linker> | |
36 </cc> | |
37 | |
38 <cc name="mac-g++"> | |
39 <compiler> | |
40 <command> g++ </command> | |
41 <flag> -g -Wall -O9 </flag> | |
42 <flag> -I${CERIUM}/include/TaskManager -I. -I.. </flag> | |
43 </compiler> | |
44 <linker> | |
45 <command> g++ </command> | |
46 <flag> -L${CERIUM}/TaskManager </flag> | |
47 <flag> ${CERIUM}/TaskManager -lFifoManager `sdl-config --libs` </flag> | |
48 </linker> | |
49 </cc> |