-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathvalues.yaml
991 lines (952 loc) · 32.7 KB
/
values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
vars:
- &wii_gc_compilers https://files.decomp.dev/compilers_20240706.zip
- &nds_mwcc https://github.com/decompme/compilers/releases/download/compilers/mwccarm.zip
- &3ds_armcc https://github.com/decompme/compilers/releases/download/compilers/armcc.zip
compilers:
# N64
- id: gcc2.7.2kmc
platform: n64
template: common/default
arch: linux
files:
- https://github.com/decompals/mips-gcc-2.7.2/releases/download/main/gcc-2.7.2-linux.tar.gz
- https://github.com/decompals/mips-binutils-2.6/releases/download/main/binutils-2.6-linux.tar.gz
- id: gcc2.7.2kmc
platform: n64
template: common/default
arch: darwin
files:
- https://github.com/decompals/mips-gcc-2.7.2/releases/download/main/gcc-2.7.2-mac.tar.gz
- https://github.com/decompals/mips-binutils-2.6/releases/download/main/binutils-2.6-mac.tar.gz
- id: gcc2.7.2sn
platform: n64
template: common/default
files:
- https://github.com/Mr-Wiseguy/pcsx-redux/releases/download/n64/asn64.exe
- https://github.com/Mr-Wiseguy/pcsx-redux/releases/download/n64/cc1n64.exe
- https://github.com/Mr-Wiseguy/pcsx-redux/releases/download/n64/psyq-obj-parser
- id: gcc2.7.2snew
platform: n64
template: common/default
files:
- https://github.com/decompals/SN64-gcc/releases/download/gcc-2.7.2-970404/SN64-gcc-2.7.2-970404-linux.tar.gz
- https://github.com/RocketRet/modern-asn64/releases/download/main-release/modern-asn64.py
- id: gcc2.8.1pm
platform: n64
template: common/default
arch: linux
files:
- https://github.com/pmret/gcc-papermario/releases/download/master/linux.tar.gz
- https://github.com/pmret/binutils-papermario/releases/download/master/linux.tar.gz
- id: gcc2.8.1pm
platform: n64
template: common/default
arch: darwin
files:
- https://github.com/pmret/gcc-papermario/releases/download/master/mac.tar.gz
- https://github.com/pmret/binutils-papermario/releases/download/master/mac.tar.gz
- id: gcc2.8.1sn
platform: n64
template: common/default
files:
- https://github.com/marijnvdwerf/sn64/releases/download/1%2C0%2C0%2C2/asn64.exe
- https://github.com/marijnvdwerf/sn64/releases/download/1%2C0%2C0%2C2/cc1n64.exe
- https://github.com/marijnvdwerf/sn64/releases/download/1%2C0%2C0%2C2/cc1pln64.exe
- https://github.com/Mr-Wiseguy/pcsx-redux/releases/download/n64/psyq-obj-parser
- id: ido5.3
platform: n64
template: common/default
arch: linux
file: https://github.com/decompals/ido-static-recomp/releases/download/v1.2/ido-5.3-recomp-linux.tar.gz
- id: ido5.3
platform: n64
template: common/default
arch: darwin
file: https://github.com/decompals/ido-static-recomp/releases/download/v1.2/ido-5.3-recomp-macos.tar.gz
- id: ido5.3_c++
platform: n64
template: common/default
file: https://github.com/LLONSIT/qemu-irix-helpers/raw/n/qemu/ido5.3_c++.tar.xz?2024-03-03
- id: ido6.0
platform: n64
template: common/default
file: https://github.com/LLONSIT/qemu-irix-helpers/raw/n/qemu/ido6.0.tar.xz
- id: ido7.1
platform: n64
template: common/default
arch: linux
file: https://github.com/decompals/ido-static-recomp/releases/download/v1.2/ido-7.1-recomp-linux.tar.gz
- id: ido7.1
platform: n64
template: common/default
arch: darwin
file: https://github.com/decompals/ido-static-recomp/releases/download/v1.2/ido-7.1-recomp-macos.tar.gz
- id: mips_pro_744
platform: n64
template: common/default
file: https://github.com/LLONSIT/qemu-irix-helpers/raw/n/qemu/mipspro7.4.4.tar.xz
- id: egcs_1.1.2-4
platform: n64
template: common/default
file: https://github.com/AngheloAlf/egcs_1.1.2-4/releases/download/latest/egcs_1.1.2-4.tar.gz
- id: egcs_1.1.2-4c
platform: n64
template: common/default
arch: linux
files:
- https://github.com/decompals/mips-binutils-egcs-2.9.5/releases/download/0.6/mips-binutils-egcs-2.9.5-linux.tar.gz
- https://github.com/decompals/mips-gcc-egcs-2.91.66/releases/download/0.7/mips-gcc-egcs-2.91.66-linux.tar.gz
- id: egcs_1.1.2-4c
platform: n64
template: common/default
arch: darwin
files:
- https://github.com/decompals/mips-binutils-egcs-2.9.5/releases/download/0.6/mips-binutils-egcs-2.9.5-macos.tar.gz
- https://github.com/decompals/mips-gcc-egcs-2.91.66/releases/download/0.7/mips-gcc-egcs-2.91.66-macos.tar.gz
- id: gcc4.4.0-mips64-elf
platform: n64
template: common/default
file: https://github.com/devwizard64/gcc4.4.0-mips64-elf/releases/download/latest/gcc4.4.0-mips64-elf.tar.gz
# PS1
- id: psyq_263_221
platform: ps1
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/psyq_263_221.tar.gz
- id: psyq3.3
platform: ps1
template: ps1/psyq
file: https://github.com/mkst/esa/releases/download/psyq-binaries/psyq3.3.tar.gz
- id: psyq3.5
platform: ps1
template: ps1/psyq
file: https://github.com/mkst/esa/releases/download/psyq-binaries/psyq3.5.tar.gz
- id: psyq3.6
platform: ps1
template: ps1/psyq
file: https://github.com/mkst/esa/releases/download/psyq-binaries/psyq3.6.tar.gz
- id: psyq4.0
platform: ps1
template: ps1/psyq
file: https://github.com/mkst/esa/releases/download/psyq-binaries/psyq4.0.tar.gz
- id: psyq4.1
platform: ps1
template: ps1/psyq
file: https://github.com/mkst/esa/releases/download/psyq-binaries/psyq4.1.tar.gz
- id: psyq4.3
platform: ps1
template: ps1/psyq
file: https://github.com/mkst/esa/releases/download/psyq-binaries/psyq4.3.tar.gz
- id: psyq4.4
platform: ps1
template: ps1/psyq
file: https://github.com/mkst/esa/releases/download/psyq-binaries/psyq4.4.tar.gz
- id: psyq4.5
platform: ps1
template: ps1/psyq
file: https://github.com/mkst/esa/releases/download/psyq-binaries/psyq4.5.tar.gz
- id: psyq4.6
platform: ps1
template: ps1/psyq
file: https://github.com/mkst/esa/releases/download/psyq-binaries/psyq4.6.tar.gz
- id: gcc2.5.7-mipsel
platform: ps1
template: ps1/maspsx
file: https://github.com/decompals/old-gcc/releases/download/0.7/gcc-2.5.7.tar.gz
- id: gcc2.5.7-psx
platform: ps1
template: ps1/maspsx
file: https://github.com/decompals/old-gcc/releases/download/0.12/gcc-2.5.7-psx.tar.gz
- id: gcc2.6.0-mipsel
platform: ps1
template: ps1/maspsx
file: https://github.com/decompals/old-gcc/releases/download/0.7/gcc-2.6.0.tar.gz
- id: gcc2.6.0-psx
platform: ps1
template: ps1/maspsx
file: https://github.com/decompals/old-gcc/releases/download/0.12/gcc-2.6.0-psx.tar.gz
- id: gcc2.6.3-mipsel
platform: ps1
template: ps1/maspsx
file: https://github.com/decompals/old-gcc/releases/download/0.7/gcc-2.6.3.tar.gz
- id: gcc2.6.3-psx
platform: ps1
template: ps1/maspsx
file: https://github.com/decompals/old-gcc/releases/download/0.12/gcc-2.6.3-psx.tar.gz
- id: gcc2.7.0-mipsel
platform: ps1
template: ps1/maspsx
file: https://github.com/decompals/old-gcc/releases/download/0.7/gcc-2.7.0.tar.gz
- id: gcc2.7.1-mipsel
platform: ps1
template: ps1/maspsx
file: https://github.com/decompals/old-gcc/releases/download/0.7/gcc-2.7.1.tar.gz
- id: gcc2.7.2-mipsel
platform: ps1
template: ps1/maspsx
file: https://github.com/decompals/old-gcc/releases/download/0.7/gcc-2.7.2.tar.gz
- id: gcc2.7.2-psx
platform: ps1
template: ps1/maspsx
file: https://github.com/decompals/old-gcc/releases/download/0.13/gcc-2.7.2-psx.tar.gz
- id: gcc2.7.2.1-mipsel
platform: ps1
template: ps1/maspsx
file: https://github.com/decompals/old-gcc/releases/download/0.7/gcc-2.7.2.1.tar.gz
- id: gcc2.7.2.2-mipsel
platform: ps1
template: ps1/maspsx
file: https://github.com/decompals/old-gcc/releases/download/0.7/gcc-2.7.2.2.tar.gz
- id: gcc2.7.2.3-mipsel
platform: ps1
template: ps1/maspsx
file: https://github.com/decompals/old-gcc/releases/download/0.7/gcc-2.7.2.3.tar.gz
- id: gcc2.8.0-mipsel
platform: ps1
template: ps1/maspsx
file: https://github.com/decompals/old-gcc/releases/download/0.7/gcc-2.8.0.tar.gz
- id: gcc2.8.0-psx
platform: ps1
template: ps1/maspsx
file: https://github.com/decompals/old-gcc/releases/download/0.12/gcc-2.8.0-psx.tar.gz
- id: gcc2.8.1-mipsel
platform: ps1
template: ps1/maspsx
file: https://github.com/decompals/old-gcc/releases/download/0.7/gcc-2.8.1.tar.gz
- id: gcc2.8.1-psx
platform: ps1
template: ps1/maspsx
file: https://github.com/decompals/old-gcc/releases/download/0.12/gcc-2.8.1-psx.tar.gz
- id: gcc2.91.66-mipsel
platform: ps1
template: ps1/maspsx
file: https://github.com/decompals/old-gcc/releases/download/0.7/gcc-2.91.66.tar.gz
- id: gcc2.91.66-psx
platform: ps1
template: ps1/maspsx
file: https://github.com/decompals/old-gcc/releases/download/0.12/gcc-2.91.66-psx.tar.gz
- id: gcc2.95.2-mipsel
platform: ps1
template: ps1/maspsx
file: https://github.com/decompals/old-gcc/releases/download/0.7/gcc-2.95.2.tar.gz
- id: gcc2.95.2-psx
platform: ps1
template: ps1/maspsx
file: https://github.com/decompals/old-gcc/releases/download/0.12/gcc-2.95.2-psx.tar.gz
# PS2
- id: iop-gcc2.8.1
platform: ps2
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/iop-gcc2.8.1.tar.gz
- id: iop-gcc2.95.2-102
platform: ps2
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/iop-gcc2.95.2-102.tar.gz
- id: ee-gcc2.9-990721
platform: ps2
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/ee-gcc2.9-990721.tar.xz
- id: ee-gcc2.9-991111
platform: ps2
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/ee-gcc2.9-991111.tar.xz
- id: ee-gcc2.9-991111a
platform: ps2
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/ee-gcc2.9-991111a.tar.xz
- id: ee-gcc2.9-991111b-r4
platform: ps2
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/ee-gcc2.9-991111.tar.gz
- id: ee-gcc2.9-991111-01
platform: ps2
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/ee-gcc2.9-991111-01.tar.xz
- id: ee-gcc2.96
platform: ps2
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/ee-gcc2.96.tar.xz
- id: ee-gcc3.2-030210-beta2
platform: ps2
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/ee-gcc3.2-030210-beta2.tar.gz?2025-02-10
- id: ee-gcc3.2-030926
platform: ps2
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/ee-gcc3.2-030926.tar.gz
- id: ee-gcc3.2-040921
platform: ps2
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/ee-gcc3.2-040921.tar.xz
- id: ee-gcc2.95.2-273a
platform: ps2
template: common/xz
file: https://github.com/decompme/compilers/releases/download/compilers/ps2_compilers.tar.xz
- id: ee-gcc2.95.2-274
platform: ps2
template: common/xz
file: https://github.com/decompme/compilers/releases/download/compilers/ps2_compilers.tar.xz
- id: ee-gcc2.95.3-107
platform: ps2
template: common/xz
file: https://github.com/decompme/compilers/releases/download/compilers/ps2_compilers.tar.xz
- id: ee-gcc2.95.3-114
platform: ps2
template: common/xz
file: https://github.com/decompme/compilers/releases/download/compilers/ps2_compilers.tar.xz
- id: ee-gcc2.95.3-136
platform: ps2
template: common/xz
file: https://github.com/decompme/compilers/releases/download/compilers/ps2_compilers.tar.xz
- id: mwcps2-2.3-991202
platform: ps2
template: common/xz
file: https://github.com/decompme/compilers/releases/download/compilers/ps2_compilers.tar.xz
- id: mwcps2-2.3.3-000906
platform: ps2
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/mwcps2-2.3.3-000906.tar.gz
- id: mwcps2-2.4-001213
platform: ps2
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/mwcps2-2.4-001213.tar.gz
- id: mwcps2-3.0-011126
platform: ps2
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/mwcps2-3.0-011126.tar.gz
- id: mwcps2-3.0.1-020123
platform: ps2
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/mwcps2-3.0.1-020123.tar.gz
- id: mwcps2-3.0.3-020716
platform: ps2
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/mwcps2-3.0.3-020716.tar.gz
- id: mwcps2-3.0b22-020926
platform: ps2
template: common/xz
file: https://github.com/decompme/compilers/releases/download/compilers/ps2_compilers.tar.xz
- id: mwcps2-3.0b38-030307
platform: ps2
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/mwcps2-3.0b38-030307.tar.gz
- id: mwcps2-3.0b50-030527
platform: ps2
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/mwcps2-3.0b50-030527.tar.gz
- id: mwcps2-3.0b52-030722
platform: ps2
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/mwcps2-3.0b52-030722.tar.gz
- id: mwcps2-3.0.1b44-030325
platform: ps2
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/mwcps2-3.0.1b44-030325.tar.gz
- id: mwcps2-3.0.1b51-030512
platform: ps2
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/mwcps2-3.0.1b51-030512.tar.gz
- id: mwcps2-3.0.1b74-030811
platform: ps2
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/mwcps2-3.0.1b74-030811.tar.gz
- id: mwcps2-3.0.1b75-030916
platform: ps2
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/mwcps2-3.0.1b75-030916.tar.gz
- id: mwcps2-3.0.1b87-031208
platform: ps2
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/mwcps2-3.0.1b87-031208.tar.gz
- id: mwcps2-3.0.1b95-040309
platform: ps2
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/mwcps2-3.0.1b95-040309.tar.gz
- id: mwcps2-3.0.1b103-040528
platform: ps2
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/mwcps2-3.0.1b103-040528.tar.gz
- id: mwcps2-3.0.1b119-040914
platform: ps2
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/mwcps2-3.0.1b119-040914.tar.gz
- id: mwcps2-3.0.1b145-050209
platform: ps2
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/mwcps2-3.0.1b145-050209.tar.gz
- id: mwcps2-3.0.1b151-050317
platform: ps2
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/mwcps2-3.0.1b151-050317.tar.gz
- id: mwcps2-3.0.1b198-051011
platform: ps2
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/mwcps2-3.0.1b198-051011.tar.gz
- id: mwcps2-3.0.1b205-051227
platform: ps2
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/mwcps2-3.0.1b205-051227.tar.gz
- id: mwcps2-3.0.1b210-060308
platform: ps2
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/mwcps2-3.0.1b210-060308.tar.gz
# PSP
- id: mwccpsp_3.0.1_121
platform: psp
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/mwccpsp_3.0.1_121.tar.gz
- id: mwccpsp_3.0.1_134
platform: psp
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/mwccpsp_3.0.1_134.tar.gz
- id: mwccpsp_3.0.1_139
platform: psp
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/mwccpsp_3.0.1_139.tar.gz
- id: mwccpsp_3.0.1_147
platform: psp
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/mwccpsp_3.0.1_147.tar.gz
- id: mwccpsp_3.0.1_151
platform: psp
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/mwccpsp_3.0.1_151.tar.gz
- id: mwccpsp_3.0.1_180
platform: psp
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/mwccpsp_3.0.1_180.tar.gz
- id: mwccpsp_3.0.1_192
platform: psp
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/mwccpsp_3.0.1_192.tar.gz
- id: mwccpsp_3.0.1_201
platform: psp
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/mwccpsp_3.0.1_201.tar.gz
- id: mwccpsp_3.0.1_205
platform: psp
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/mwccpsp_3.0.1_205.tar.gz
- id: mwccpsp_3.0.1_210
platform: psp
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/mwccpsp_3.0.1_210.tar.gz
- id: mwccpsp_3.0.1_219
platform: psp
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/mwccpsp_3.0.1_219.tar.gz
- id: pspsnc_1.2.7503.0
platform: psp
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/pspsnc_1.2.7503.0.tar.gz
- id: psp-gcc-1.3.1
platform: psp
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/psp-gcc-1.3.1.tar.gz?2024-04-25
# MAXOSX
- id: gcc-5370
platform: macosx
template: common/default
files:
- https://github.com/ChrisNonyminus/powerpc-darwin-cross/releases/download/initial/gcc-5370.tar.gz
- https://gist.githubusercontent.com/ChrisNonyminus/ec53837b151a65e4233fa53604de4549/raw/d7c6fc639310b938fa519e68a8f8d4909acba2ad/convert_gas_syntax.py
- id: gcc-5026
platform: macosx
template: common/default
files:
- https://github.com/ChrisNonyminus/powerpc-darwin-cross/releases/download/initial/gcc-5026.tar.gz
- https://gist.githubusercontent.com/ChrisNonyminus/ec53837b151a65e4233fa53604de4549/raw/d7c6fc639310b938fa519e68a8f8d4909acba2ad/convert_gas_syntax.py
- id: gcc-5363
platform: macosx
template: common/default
files:
- https://github.com/ChrisNonyminus/powerpc-darwin-cross/releases/download/initial/gcc-5363.tar.gz
- https://gist.githubusercontent.com/ChrisNonyminus/ec53837b151a65e4233fa53604de4549/raw/d7c6fc639310b938fa519e68a8f8d4909acba2ad/convert_gas_syntax.py
- id: gcc3-1041
platform: macosx
template: common/default
files:
- https://github.com/ChrisNonyminus/powerpc-darwin-cross/releases/download/initial/gcc3-1041.tar.gz
- https://gist.githubusercontent.com/ChrisNonyminus/ec53837b151a65e4233fa53604de4549/raw/d7c6fc639310b938fa519e68a8f8d4909acba2ad/convert_gas_syntax.py
# GBA
- id: agbcc
platform: gba
template: common/default
file: https://github.com/pret/agbcc/releases/download/release/agbcc.tar.gz
- id: agbccpp
platform: gba
template: common/default
file: https://github.com/notyourav/agbcc/releases/download/cp/agbcc.tar.gz
# SATURN
- id: cygnus-2.7-96Q3
platform: saturn
template: common/zip
package_dir: saturn-compilers-*/cygnus-2.7-96Q3-bin
file: https://github.com/sozud/saturn-compilers/archive/af27f4aa6566c1b0fa5332b488e63d6ffd28bd48.zip
# SWITCH
- id: clang-3.9.1
arch: linux
platform: switch
template: switch/clang
file: https://releases.llvm.org/3.9.1/clang+llvm-3.9.1-x86_64-linux-gnu-debian8.tar.xz
clang_binary: clang-3.9
# 3.9.1 is not available for mac
# - id: clang-3.9.1
# arch: darwin
# platform: switch
# file: https://releases.llvm.org/3.9.1/clang+llvm-3.9.1-x86_64-apple-darwin.tar.xz
# clang_binary: clang-3.9
- id: clang-4.0.1
arch: linux
platform: switch
template: switch/clang
file: https://releases.llvm.org/4.0.1/clang+llvm-4.0.1-x86_64-linux-gnu-debian8.tar.xz
clang_binary: clang-4.0
- id: clang-4.0.1
arch: darwin
platform: switch
template: switch/clang
file: https://releases.llvm.org/4.0.1/clang+llvm-4.0.1-x86_64-apple-darwin.tar.xz
clang_binary: clang-4.0
- id: clang-8.0.0
arch: linux
platform: switch
template: switch/clang
file: https://releases.llvm.org/8.0.0/clang+llvm-8.0.0-x86_64-linux-gnu-ubuntu-18.04.tar.xz
clang_binary: clang-8
- id: clang-8.0.0
arch: darwin
platform: switch
template: switch/clang
file: https://releases.llvm.org/8.0.0/clang+llvm-8.0.0-x86_64-apple-darwin.tar.xz
clang_binary: clang-8
# NDS
- id: mwcc_20_72
platform: nds_arm9
file: *nds_mwcc
template: nds/mwccarm
package_dir: mwccarm/1.2/base
- id: mwcc_20_79
platform: nds_arm9
file: *nds_mwcc
template: nds/mwccarm
package_dir: mwccarm/1.2/sp2
- id: mwcc_20_82
platform: nds_arm9
file: *nds_mwcc
template: nds/mwccarm
package_dir: mwccarm/1.2/sp2p3
- id: mwcc_20_84
platform: nds_arm9
file: *nds_mwcc
template: nds/mwccarm
package_dir: mwccarm/1.2/sp3
- id: mwcc_20_87
platform: nds_arm9
file: *nds_mwcc
template: nds/mwccarm
package_dir: mwccarm/1.2/sp4
- id: mwcc_30_114
platform: nds_arm9
file: *nds_mwcc
template: nds/mwccarm
package_dir: mwccarm/2.0/base
- id: mwcc_30_123
platform: nds_arm9
file: *nds_mwcc
template: nds/mwccarm
package_dir: mwccarm/2.0/sp1
- id: mwcc_30_126
platform: nds_arm9
file: *nds_mwcc
template: nds/mwccarm
package_dir: mwccarm/2.0/sp1p2
- id: mwcc_30_131
platform: nds_arm9
file: *nds_mwcc
template: nds/mwccarm
package_dir: mwccarm/2.0/sp1p5
- id: mwcc_30_133
platform: nds_arm9
file: *nds_mwcc
template: nds/mwccarm
package_dir: mwccarm/2.0/sp1p6
- id: mwcc_30_134
platform: nds_arm9
file: *nds_mwcc
template: nds/mwccarm
package_dir: mwccarm/2.0/sp1p7
- id: mwcc_30_136
platform: nds_arm9
file: *nds_mwcc
template: nds/mwccarm
package_dir: mwccarm/2.0/sp2
- id: mwcc_30_137
platform: nds_arm9
file: *nds_mwcc
template: nds/mwccarm
package_dir: mwccarm/2.0/sp2p2
- id: mwcc_30_138
platform: nds_arm9
file: *nds_mwcc
template: nds/mwccarm
package_dir: mwccarm/2.0/sp2p3
- id: mwcc_30_139
platform: nds_arm9
file: *nds_mwcc
template: nds/mwccarm
package_dir: mwccarm/2.0/sp2p4
- id: mwcc_40_1018
platform: nds_arm9
file: *nds_mwcc
template: nds/mwccarm
package_dir: mwccarm/dsi/1.1
- id: mwcc_40_1024
platform: nds_arm9
file: *nds_mwcc
template: nds/mwccarm
package_dir: mwccarm/dsi/1.1p1
- id: mwcc_40_1026
platform: nds_arm9
file: *nds_mwcc
template: nds/mwccarm
package_dir: mwccarm/dsi/1.2
- id: mwcc_40_1027
platform: nds_arm9
file: *nds_mwcc
template: nds/mwccarm
package_dir: mwccarm/dsi/1.2p1
- id: mwcc_40_1028
platform: nds_arm9
file: *nds_mwcc
template: nds/mwccarm
package_dir: mwccarm/dsi/1.2p2
- id: mwcc_40_1034
platform: nds_arm9
file: *nds_mwcc
template: nds/mwccarm
package_dir: mwccarm/dsi/1.3
- id: mwcc_40_1036
platform: nds_arm9
file: *nds_mwcc
template: nds/mwccarm
package_dir: mwccarm/dsi/1.3p1
- id: mwcc_40_1051
platform: nds_arm9
file: *nds_mwcc
template: nds/mwccarm
package_dir: mwccarm/dsi/1.6sp1
# 3DS
- id: armcc_40_771
platform: n3ds
template: common/zip
file: *3ds_armcc
package_dir: 4.0/b771
- id: armcc_40_821
platform: n3ds
template: common/zip
file: *3ds_armcc
package_dir: 4.0/b821
- id: armcc_41_561
platform: n3ds
template: common/zip
file: *3ds_armcc
package_dir: 4.1/b561
- id: armcc_41_713
platform: n3ds
template: common/zip
file: *3ds_armcc
package_dir: 4.1/b713
- id: armcc_41_791
platform: n3ds
template: common/zip
file: *3ds_armcc
package_dir: 4.1/b791
- id: armcc_41_894
platform: n3ds
template: common/zip
file: *3ds_armcc
package_dir: 4.1/b894
- id: armcc_41_921
platform: n3ds
template: common/zip
file: *3ds_armcc
package_dir: 4.1/b921
- id: armcc_41_1049
platform: n3ds
template: common/zip
file: *3ds_armcc
package_dir: 4.1/b1049
- id: armcc_41_1440
platform: n3ds
template: common/zip
file: *3ds_armcc
package_dir: 4.1/b1440
- id: armcc_41_1454
platform: n3ds
template: common/zip
file: *3ds_armcc
package_dir: 4.1/b1454
- id: armcc_504_82
platform: n3ds
template: common/zip
file: *3ds_armcc
package_dir: 5.04/b82
# WII & GCC
- id: mwcc_233_144
platform: gc_wii
template: gc_wii/mwcceppc
file: *wii_gc_compilers
package_dir: GC/1.0
- id: mwcc_233_159
platform: gc_wii
template: gc_wii/mwcceppc
file: *wii_gc_compilers
package_dir: GC/1.1
- id: mwcc_233_163
platform: gc_wii
template: gc_wii/mwcceppc
file: *wii_gc_compilers
package_dir: GC/1.2.5
- id: mwcc_233_163n
platform: gc_wii
template: gc_wii/mwcceppc
file: *wii_gc_compilers
package_dir: GC/1.2.5n
- id: mwcc_242_53
platform: gc_wii
template: gc_wii/mwcceppc
file: *wii_gc_compilers
package_dir: GC/1.3
- id: mwcc_242_81
platform: gc_wii
template: gc_wii/mwcceppc
file: *wii_gc_compilers
package_dir: GC/1.3.2
- id: mwcc_242_81r
platform: gc_wii
template: gc_wii/mwcceppc
file: *wii_gc_compilers
package_dir: GC/1.3.2r
- id: mwcc_247_92
platform: gc_wii
template: gc_wii/mwcceppc
file: *wii_gc_compilers
package_dir: GC/2.0
- id: mwcc_247_92p1
platform: gc_wii
template: gc_wii/mwcceppc
file: *wii_gc_compilers
package_dir: GC/2.0p1
- id: mwcc_247_105
platform: gc_wii
template: gc_wii/mwcceppc
file: *wii_gc_compilers
package_dir: GC/2.5
- id: mwcc_247_107
platform: gc_wii
template: gc_wii/mwcceppc
file: *wii_gc_compilers
package_dir: GC/2.6
- id: mwcc_247_108
platform: gc_wii
template: gc_wii/mwcceppc
file: *wii_gc_compilers
package_dir: GC/2.7
- id: mwcc_41_51213
platform: gc_wii
template: gc_wii/mwcceppc
file: *wii_gc_compilers
package_dir: GC/3.0a3
- id: mwcc_41_60126
platform: gc_wii
template: gc_wii/mwcceppc
file: *wii_gc_compilers
package_dir: GC/3.0a3.2
- id: mwcc_41_60209
platform: gc_wii
template: gc_wii/mwcceppc
file: *wii_gc_compilers
package_dir: GC/3.0a3.3
- id: mwcc_42_60308
platform: gc_wii
template: gc_wii/mwcceppc
file: *wii_gc_compilers
package_dir: GC/3.0a3.4
- id: mwcc_42_60422
platform: gc_wii
template: gc_wii/mwcceppc
file: *wii_gc_compilers
package_dir: GC/3.0a5
- id: mwcc_41_60831
platform: gc_wii
template: gc_wii/mwcceppc
file: *wii_gc_compilers
package_dir: GC/3.0a5.2
- id: mwcc_42_127
platform: gc_wii
template: gc_wii/mwcceppc
file: *wii_gc_compilers
package_dir: Wii/0x4201_127
- id: mwcc_42_140
platform: gc_wii
template: gc_wii/mwcceppc
file: *wii_gc_compilers
package_dir: Wii/1.0RC1
- id: mwcc_42_142
platform: gc_wii
template: gc_wii/mwcceppc
file: *wii_gc_compilers
package_dir: Wii/1.0a
- id: mwcc_43_145
platform: gc_wii
template: gc_wii/mwcceppc
file: *wii_gc_compilers
package_dir: Wii/1.0
- id: mwcc_43_151
platform: gc_wii
template: gc_wii/mwcceppc
file: *wii_gc_compilers
package_dir: Wii/1.1
- id: mwcc_43_172
platform: gc_wii
template: gc_wii/mwcceppc
file: *wii_gc_compilers
package_dir: Wii/1.3
- id: mwcc_43_188
platform: gc_wii
template: gc_wii/mwcceppc
file: *wii_gc_compilers
package_dir: Wii/1.5
- id: mwcc_43_202
platform: gc_wii
template: gc_wii/mwcceppc
file: *wii_gc_compilers
package_dir: Wii/1.6
- id: mwcc_43_213
platform: gc_wii
template: gc_wii/mwcceppc
file: *wii_gc_compilers
package_dir: Wii/1.7
- id: mwcc_233_163e
platform: gc_wii
template: gc_wii/mwcceppc
file: *wii_gc_compilers
package_dir: GC/1.2.5e
frank_mwcceppc: GC/1.2.5
- id: prodg_35
platform: gc_wii
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/prodg_35.tar.gz
- id: prodg_35_b140
platform: gc_wii
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/prodg_35_b140.tar.gz
- id: prodg_37
platform: gc_wii
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/prodg_37.tar.gz
- id: prodg_381
platform: gc_wii
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/prodg_381.tar.gz?2025-02-13
- id: prodg_393
platform: gc_wii
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/prodg_393.tar.gz?2025-02-13
# DOS
- id: wcc10.5
platform: msdos
template: common/default
file: https://github.com/OmniBlade/decomp.me/releases/download/wcc10.5/wcc10.5.tar.gz
- id: wcc10.5a
platform: msdos
template: common/default
file: https://github.com/OmniBlade/decomp.me/releases/download/wcc10.5/wcc10.5a.tar.gz
- id: wcc10.6
platform: msdos
template: common/default
file: https://github.com/OmniBlade/decomp.me/releases/download/wcc10.5/wcc10.6.tar.gz
- id: wcc11.0
platform: msdos
template: common/default
file: https://github.com/OmniBlade/decomp.me/releases/download/wcc10.5/wcc11.0.tar.gz
- id: bcc3.1
platform: msdos
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/bcc3.1.tar.gz
# WIN32
- id: msvc6.0
platform: win32
template: common/default
file: https://github.com/OmniBlade/decomp.me/releases/download/msvcwin9x/msvc6.0.tar.gz
rm_dirs:
- MFC
- id: msvc6.3
platform: win32
template: common/default
file: https://github.com/OmniBlade/decomp.me/releases/download/msvcwin9x/msvc6.3.tar.gz
rm_dirs:
- MFC
- id: msvc6.4
platform: win32
template: common/default
file: https://github.com/OmniBlade/decomp.me/releases/download/msvcwin9x/msvc6.4.tar.gz
rm_dirs:
- MFC
- id: msvc6.5
platform: win32
template: common/default
file: https://github.com/OmniBlade/decomp.me/releases/download/msvcwin9x/msvc6.5.tar.gz
rm_dirs:
- MFC
- id: msvc6.5pp
platform: win32
template: common/default
file: https://github.com/OmniBlade/decomp.me/releases/download/msvcwin9x/msvc6.5pp.tar.gz
rm_dirs:
- MFC
- id: msvc6.6
platform: win32
template: common/default
file: https://github.com/OmniBlade/decomp.me/releases/download/msvcwin9x/msvc6.6.tar.gz
rm_dirs:
- MFC
- id: msvc7.0
platform: win32
template: common/default
file: https://github.com/roblabla/MSVC-7.0-Portable/releases/download/release/msvc7.0.tar.gz
- id: msvc7.1
platform: win32
template: common/default
file: https://github.com/OmniBlade/decomp.me/releases/download/msvcwin9x/msvc7.0.tar.gz
rm_dirs:
- MFC
- id: msvc4.0
platform: win32
template: win32/msvc
file: https://github.com/itsmattkc/MSVC400/archive/821e942fd95bd16d01649401de7943ef87ae9f54.zip
bin_dir: MSVC400-*/BIN
include_dir: MSVC400-*/INCLUDE
- id: msvc4.1
platform: win32
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/msvc4.1.tar.gz
- id: msvc4.2
platform: win32
template: win32/msvc
file: https://github.com/itsmattkc/MSVC420/archive/df2c13aad74c094988c6c7e784234c2e778a0e91.zip
bin_dir: MSVC420-*/bin
include_dir: MSVC420-*/include
- id: msvc8.0
platform: win32
template: win32/msvc
file: https://github.com/widberg/msvc8.0/archive/d6c4aa208c8345c78a9f68ba6ef911ee94c6a6e1.zip
bin_dir: msvc8.0-*/bin
include_dirs:
- msvc8.0-*/include
- msvc8.0-*/PlatformSDK/Include
# DREAMCAST
- id: shc-v5.1r11
platform: dreamcast
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/shc-v5.1r11.tar.gz