tcc 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +17 -6
- data/ext/tcc/tcc-0.9.26/.gitignore +58 -0
- data/lib/tcc.rb +2 -3
- data/tcc.gemspec +3 -2
- metadata +254 -244
- data/ext/tcc/tcc-0.9.26/config.h +0 -8
- data/ext/tcc/tcc-0.9.26/config.mak +0 -28
- data/ext/tcc/tcc-0.9.26/config.texi +0 -1
- data/ext/tcc/tcc-0.9.26/tcc-doc.info +0 -1151
- data/ext/tcc/tcc-0.9.26/tcc.1 +0 -415
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ff2257f34c9833b3aba001178b4059718752137f
|
4
|
+
data.tar.gz: 53da3d1a0905c31155b9dfa95f9d18395e2fad1f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4ef9dcba461355546975d5740541816e4cfb04d5d6a706d7e6afcf0556b34418bd70b540d7ff997629f8827a863167f146da056a84bea0ab4562a7eec6c01663
|
7
|
+
data.tar.gz: 64056b676c3d290c3043565bdff8f68662f0827db13139dd8a1d42caa94f47884e1168b00bb4a2bfc88891fe55552573c09877f49bb7ac468747a6a48a3842ae
|
data/README.md
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
libtcc-ruby
|
2
2
|
===========
|
3
|
+
[](https://travis-ci.org/quark-zju/ruby-libtcc)
|
3
4
|
|
4
5
|
[Ruby](http://www.ruby-lang.org/) wrapper for the library provided by [Tiny C Compiler (TCC)](http://bellard.org/tcc/).
|
5
6
|
|
@@ -10,20 +11,30 @@ Ruby is still slow:
|
|
10
11
|
```bash
|
11
12
|
$ ruby-2.0.0 -rbenchmark -e 'p Benchmark.measure{(1..10000000).inject(:+)}.real'
|
12
13
|
0.720332997
|
14
|
+
$ ruby-2.0.0 -rbenchmark -e 'p Benchmark.measure{i, s = 10000000, 0; s, i = s+i, i-1 while i>0}.real'
|
15
|
+
0.440345689
|
13
16
|
|
14
17
|
$ rbx-2.1.1 -rbenchmark -e 'p Benchmark.measure{(1..10000000).inject(:+)}.real'
|
15
18
|
2.6974117755889893
|
19
|
+
$ rbx-2.1.1 -rbenchmark -e 'p Benchmark.measure{i, s = 10000000, 0; s, i = s+i, i-1 while i>0}.real'
|
20
|
+
1.8986756801605225
|
16
21
|
|
17
|
-
$ jruby-1.7.3 -rbenchmark -e 'p Benchmark.measure{(1..10000000).inject(:+)}.real'
|
18
|
-
|
22
|
+
$ jruby-1.7.3 --fast -rbenchmark -e 'p Benchmark.measure{(1..10000000).inject(:+)}.real'
|
23
|
+
0.818000078201294
|
24
|
+
$ jruby-1.7.3 --fast -rbenchmark -e 'p Benchmark.measure{i, s = 10000000, 0; s, i = s+i, i-1 while i > 0}.real'
|
25
|
+
0.8040001392364502
|
19
26
|
|
20
|
-
$ echo '
|
27
|
+
$ echo 'local i, s = 10000000, 0; while i > 0 do; s, i = s + i, i - 1; end' | time lua-5.2.2
|
28
|
+
lua 0.42s user 0.00s system 99% cpu 0.429 total
|
29
|
+
$ echo "local i, s = 10000000, 0; while i > 0 do\ns, i = s + i, i - 1; end" | time luajit-2.0.2
|
30
|
+
luajit 0.03s user 0.00s system 91% cpu 0.033 total
|
31
|
+
|
32
|
+
$ echo 'long s,i=10000001;main(){for(;i--;s+=i);}' | tcc-0.9.26 - && time ./a.out
|
21
33
|
./a.out 0.07s user 0.00s system 98% cpu 0.071 total
|
22
34
|
|
23
|
-
$ echo 'long s,i=10000001;main(){for(;i--;s+=i);}' | gcc -xc - && time ./a.out
|
35
|
+
$ echo 'long s,i=10000001;main(){for(;i--;s+=i);}' | gcc-4.8.2 -xc - && time ./a.out
|
24
36
|
./a.out 0.03s user 0.00s system 96% cpu 0.034 total
|
25
|
-
|
26
|
-
$ echo 'long s,i=10000001;main(){for(;i--;s+=i);}' | gcc -O2 -xc - && time ./a.out
|
37
|
+
$ echo 'long s,i=10000001;main(){for(;i--;s+=i);}' | gcc-4.8.2 -O2 -xc - && time ./a.out
|
27
38
|
./a.out 0.01s user 0.00s system 83% cpu 0.016 total
|
28
39
|
```
|
29
40
|
|
@@ -0,0 +1,58 @@
|
|
1
|
+
*.o
|
2
|
+
*.a
|
3
|
+
tcc_g
|
4
|
+
tcc
|
5
|
+
/*-tcc
|
6
|
+
tc2.c
|
7
|
+
doc
|
8
|
+
tc3s.c
|
9
|
+
p3.c
|
10
|
+
tc1.c
|
11
|
+
error.c
|
12
|
+
i386-gen1.c
|
13
|
+
test.out1
|
14
|
+
test.out1b
|
15
|
+
test.out2
|
16
|
+
test.out2b
|
17
|
+
test.out3
|
18
|
+
test.out3b
|
19
|
+
web.sh
|
20
|
+
memdebug.c
|
21
|
+
bench
|
22
|
+
Makefile.uClibc
|
23
|
+
boundtest
|
24
|
+
prog.ref
|
25
|
+
test.ref
|
26
|
+
test.out
|
27
|
+
tcc-doc.html
|
28
|
+
ideas
|
29
|
+
tcctest.ref
|
30
|
+
linux.tcc
|
31
|
+
ldtest
|
32
|
+
libtcc_test
|
33
|
+
instr.S
|
34
|
+
p.c
|
35
|
+
p2.c
|
36
|
+
tcctest[1234]
|
37
|
+
test[1234].out
|
38
|
+
tests/tcclib.h
|
39
|
+
tests/tcctest.gcc
|
40
|
+
tests/weaktest.*.o.txt
|
41
|
+
tests2/fred.txt
|
42
|
+
.gdb_history
|
43
|
+
tcc.1
|
44
|
+
tcc.pod
|
45
|
+
config.h
|
46
|
+
config.mak
|
47
|
+
config.texi
|
48
|
+
tags
|
49
|
+
.DS_Store
|
50
|
+
*.swp
|
51
|
+
lib/x86_64
|
52
|
+
lib/i386
|
53
|
+
lib/x86_64-win32
|
54
|
+
lib/i386-win32
|
55
|
+
tcc-doc.info
|
56
|
+
conftest*
|
57
|
+
tiny_libmaker
|
58
|
+
*.dSYM
|
data/lib/tcc.rb
CHANGED
@@ -6,9 +6,8 @@ module TCC
|
|
6
6
|
extend FFI::Library
|
7
7
|
|
8
8
|
# Find libtcc.so
|
9
|
-
|
10
|
-
|
11
|
-
raise "Can not find libtcc.so" unless libtcc_path
|
9
|
+
libtcc_path = File.join(File.dirname(caller[0]), '../ext/tcc/build/lib/libtcc.so')
|
10
|
+
raise "Can not find libtcc.so. This gem is probably not built probably." unless File.exists?(libtcc_path)
|
12
11
|
ffi_lib libtcc_path
|
13
12
|
|
14
13
|
OUTPUT_MEMORY = 0
|
data/tcc.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'tcc'
|
3
|
-
s.version = '0.1.
|
3
|
+
s.version = '0.1.1'
|
4
4
|
s.summary = 'libtcc (library of Tiny C Compiler) wrapper.'
|
5
5
|
s.description = 'Tiny C Compiler is a small and fast C compiler, which makes C behavor like a script language. This is the Ruby wrapper for its library, libtcc.'
|
6
6
|
s.authors = ['Jun Wu', 'TinyCC develoeprs']
|
@@ -9,7 +9,8 @@ Gem::Specification.new do |s|
|
|
9
9
|
s.licenses = ['BSD', 'LGPL']
|
10
10
|
s.require_paths = ['lib']
|
11
11
|
s.files = %w[LICENSE README.md tcc.gemspec lib/tcc.rb ext/tcc/tcc-0.9.26.patch ext/tcc/extconf.rb]
|
12
|
-
s.files +=
|
12
|
+
s.files += %w[arm-gen.c c67-gen.c Changelog coff.h configure conftest.c COPYING elf.h examples examples/ex1.c examples/ex2.c examples/ex3.c examples/ex4.c examples/ex5.c .gitignore i386-asm.c i386-asm.h i386-gen.c i386-tok.h il-gen.c il-opcodes.h include include/float.h include/stdarg.h include/stdbool.h include/stddef.h include/tcclib.h include/varargs.h lib lib/alloca86_64.S lib/alloca86-bt.S lib/alloca86.S lib/bcheck.c lib/libtcc1.c lib/Makefile libtcc.c libtcc.h Makefile README stab.def stab.h tccasm.c tcc.c tcccoff.c tcc-doc.html tcc-doc.texi tccelf.c tccgen.c tcc.h tccpe.c tccpp.c tccrun.c tcctok.h tests tests/asmtest.S tests/boundtest.c tests/gcctestsuite.sh tests/libtcc_test.c tests/Makefile tests/tcctest.c tests/tests2 tests/tests2/00_assignment.c tests/tests2/00_assignment.expect tests/tests2/01_comment.c tests/tests2/01_comment.expect tests/tests2/02_printf.c tests/tests2/02_printf.expect tests/tests2/03_struct.c tests/tests2/03_struct.expect tests/tests2/04_for.c tests/tests2/04_for.expect tests/tests2/05_array.c tests/tests2/05_array.expect tests/tests2/06_case.c tests/tests2/06_case.expect tests/tests2/07_function.c tests/tests2/07_function.expect tests/tests2/08_while.c tests/tests2/08_while.expect tests/tests2/09_do_while.c tests/tests2/09_do_while.expect tests/tests2/10_pointer.c tests/tests2/10_pointer.expect tests/tests2/11_precedence.c tests/tests2/11_precedence.expect tests/tests2/12_hashdefine.c tests/tests2/12_hashdefine.expect tests/tests2/13_integer_literals.c tests/tests2/13_integer_literals.expect tests/tests2/14_if.c tests/tests2/14_if.expect tests/tests2/15_recursion.c tests/tests2/15_recursion.expect tests/tests2/16_nesting.c tests/tests2/16_nesting.expect tests/tests2/17_enum.c tests/tests2/17_enum.expect tests/tests2/18_include.c tests/tests2/18_include.expect tests/tests2/18_include.h tests/tests2/19_pointer_arithmetic.c tests/tests2/19_pointer_arithmetic.expect tests/tests2/20_pointer_comparison.c tests/tests2/20_pointer_comparison.expect tests/tests2/21_char_array.c tests/tests2/21_char_array.expect tests/tests2/22_floating_point.c tests/tests2/22_floating_point.expect tests/tests2/23_type_coercion.c tests/tests2/23_type_coercion.expect tests/tests2/24_math_library.c tests/tests2/24_math_library.expect tests/tests2/25_quicksort.c tests/tests2/25_quicksort.expect tests/tests2/26_character_constants.c tests/tests2/26_character_constants.expect tests/tests2/27_sizeof.c tests/tests2/27_sizeof.expect tests/tests2/28_strings.c tests/tests2/28_strings.expect tests/tests2/29_array_address.c tests/tests2/29_array_address.expect tests/tests2/30_hanoi.c tests/tests2/30_hanoi.expect tests/tests2/31_args.c tests/tests2/31_args.expect tests/tests2/32_led.c tests/tests2/32_led.expect tests/tests2/33_ternary_op.c tests/tests2/33_ternary_op.expect tests/tests2/34_array_assignment.c tests/tests2/34_array_assignment.expect tests/tests2/35_sizeof.c tests/tests2/35_sizeof.expect tests/tests2/36_array_initialisers.c tests/tests2/36_array_initialisers.expect tests/tests2/37_sprintf.c tests/tests2/37_sprintf.expect tests/tests2/38_multiple_array_index.c tests/tests2/38_multiple_array_index.expect tests/tests2/39_typedef.c tests/tests2/39_typedef.expect tests/tests2/40_stdio.c tests/tests2/40_stdio.expect tests/tests2/41_hashif.c tests/tests2/41_hashif.expect tests/tests2/42_function_pointer.c tests/tests2/42_function_pointer.expect tests/tests2/43_void_param.c tests/tests2/43_void_param.expect tests/tests2/44_scoped_declarations.c tests/tests2/44_scoped_declarations.expect tests/tests2/45_empty_for.c tests/tests2/45_empty_for.expect tests/tests2/46_grep.c tests/tests2/47_switch_return.c tests/tests2/47_switch_return.expect tests/tests2/48_nested_break.c tests/tests2/48_nested_break.expect tests/tests2/49_bracket_evaluation.c tests/tests2/49_bracket_evaluation.expect tests/tests2/50_logical_second_arg.c tests/tests2/50_logical_second_arg.expect tests/tests2/51_static.c tests/tests2/51_static.expect tests/tests2/52_unnamed_enum.c tests/tests2/52_unnamed_enum.expect tests/tests2/54_goto.c tests/tests2/54_goto.expect tests/tests2/55_lshift_type.c tests/tests2/55_lshift_type.expect tests/tests2/LICENSE tests/tests2/Makefile texi2pod.pl TODO VERSION win32 win32/build-tcc.bat win32/examples win32/examples/dll.c win32/examples/fib.c win32/examples/hello_dll.c win32/examples/hello_win.c win32/include win32/include/assert.h win32/include/conio.h win32/include/ctype.h win32/include/direct.h win32/include/dirent.h win32/include/dir.h win32/include/dos.h win32/include/errno.h win32/include/excpt.h win32/include/fcntl.h win32/include/fenv.h win32/include/inttypes.h win32/include/io.h win32/include/limits.h win32/include/locale.h win32/include/malloc.h win32/include/math.h win32/include/mem.h win32/include/memory.h win32/include/_mingw.h win32/include/process.h win32/include/sec_api win32/include/sec_api/conio_s.h win32/include/sec_api/crtdbg_s.h win32/include/sec_api/io_s.h win32/include/sec_api/mbstring_s.h win32/include/sec_api/search_s.h win32/include/sec_api/stdio_s.h win32/include/sec_api/stdlib_s.h win32/include/sec_api/stralign_s.h win32/include/sec_api/string_s.h win32/include/sec_api/sys win32/include/sec_api/sys/timeb_s.h win32/include/sec_api/tchar_s.h win32/include/sec_api/time_s.h win32/include/sec_api/wchar_s.h win32/include/setjmp.h win32/include/share.h win32/include/signal.h win32/include/stdint.h win32/include/stdio.h win32/include/stdlib.h win32/include/string.h win32/include/sys win32/include/sys/fcntl.h win32/include/sys/file.h win32/include/sys/locking.h win32/include/sys/stat.h win32/include/sys/timeb.h win32/include/sys/time.h win32/include/sys/types.h win32/include/sys/unistd.h win32/include/sys/utime.h win32/include/tchar.h win32/include/time.h win32/include/vadefs.h win32/include/values.h win32/include/wchar.h win32/include/wctype.h win32/include/winapi win32/include/winapi/basetsd.h win32/include/winapi/basetyps.h win32/include/winapi/guiddef.h win32/include/winapi/intrin.h win32/include/winapi/poppack.h win32/include/winapi/pshpack1.h win32/include/winapi/pshpack2.h win32/include/winapi/pshpack4.h win32/include/winapi/pshpack8.h win32/include/winapi/reason.h win32/include/winapi/specstrings.h win32/include/winapi/stralign.h win32/include/winapi/tvout.h win32/include/winapi/winbase.h win32/include/winapi/wincon.h win32/include/winapi/windef.h win32/include/winapi/windows.h win32/include/winapi/winerror.h win32/include/winapi/wingdi.h win32/include/winapi/winnetwk.h win32/include/winapi/winnls.h win32/include/winapi/winnt.h win32/include/winapi/winreg.h win32/include/winapi/winuser.h win32/include/winapi/winver.h win32/lib win32/lib/chkstk.S win32/lib/crt1.c win32/lib/dllcrt1.c win32/lib/dllmain.c win32/lib/gdi32.def win32/lib/kernel32.def win32/lib/msvcrt.def win32/lib/user32.def win32/lib/wincrt1.c win32/tcc-win32.txt win32/tools win32/tools/tiny_impdef.c win32/tools/tiny_libmaker.c x86_64-asm.h x86_64-gen.c].map {|f| File.join('ext/tcc/tcc-0.9.26/', f)}
|
13
13
|
s.extensions = %w[ext/tcc/extconf.rb]
|
14
14
|
s.add_dependency 'ffi', '~> 1.9.0'
|
15
|
+
s.add_development_dependency 'rspec', '~> 2.14.1'
|
15
16
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tcc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jun Wu
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-10-
|
12
|
+
date: 2013-10-31 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: ffi
|
@@ -25,6 +25,20 @@ dependencies:
|
|
25
25
|
- - ~>
|
26
26
|
- !ruby/object:Gem::Version
|
27
27
|
version: 1.9.0
|
28
|
+
- !ruby/object:Gem::Dependency
|
29
|
+
name: rspec
|
30
|
+
requirement: !ruby/object:Gem::Requirement
|
31
|
+
requirements:
|
32
|
+
- - ~>
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: 2.14.1
|
35
|
+
type: :development
|
36
|
+
prerelease: false
|
37
|
+
version_requirements: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - ~>
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: 2.14.1
|
28
42
|
description: Tiny C Compiler is a small and fast C compiler, which makes C behavor
|
29
43
|
like a script language. This is the Ruby wrapper for its library, libtcc.
|
30
44
|
email: quark@lihdd.net
|
@@ -39,281 +53,277 @@ files:
|
|
39
53
|
- lib/tcc.rb
|
40
54
|
- ext/tcc/tcc-0.9.26.patch
|
41
55
|
- ext/tcc/extconf.rb
|
42
|
-
- ext/tcc/tcc-0.9.26/
|
43
|
-
- ext/tcc/tcc-0.9.26/tcc.1
|
44
|
-
- ext/tcc/tcc-0.9.26/lib/Makefile
|
45
|
-
- ext/tcc/tcc-0.9.26/lib/alloca86.S
|
46
|
-
- ext/tcc/tcc-0.9.26/lib/libtcc1.c
|
47
|
-
- ext/tcc/tcc-0.9.26/lib/alloca86-bt.S
|
48
|
-
- ext/tcc/tcc-0.9.26/lib/bcheck.c
|
49
|
-
- ext/tcc/tcc-0.9.26/lib/alloca86_64.S
|
50
|
-
- ext/tcc/tcc-0.9.26/README
|
51
|
-
- ext/tcc/tcc-0.9.26/tccasm.c
|
52
|
-
- ext/tcc/tcc-0.9.26/config.h
|
53
|
-
- ext/tcc/tcc-0.9.26/texi2pod.pl
|
54
|
-
- ext/tcc/tcc-0.9.26/libtcc.c
|
55
|
-
- ext/tcc/tcc-0.9.26/tcc-doc.html
|
56
|
-
- ext/tcc/tcc-0.9.26/config.mak
|
57
|
-
- ext/tcc/tcc-0.9.26/coff.h
|
56
|
+
- ext/tcc/tcc-0.9.26/arm-gen.c
|
58
57
|
- ext/tcc/tcc-0.9.26/c67-gen.c
|
59
|
-
- ext/tcc/tcc-0.9.26/
|
60
|
-
- ext/tcc/tcc-0.9.26/
|
61
|
-
- ext/tcc/tcc-0.9.26/win32/lib/crt1.c
|
62
|
-
- ext/tcc/tcc-0.9.26/win32/lib/kernel32.def
|
63
|
-
- ext/tcc/tcc-0.9.26/win32/lib/dllmain.c
|
64
|
-
- ext/tcc/tcc-0.9.26/win32/lib/user32.def
|
65
|
-
- ext/tcc/tcc-0.9.26/win32/lib/dllcrt1.c
|
66
|
-
- ext/tcc/tcc-0.9.26/win32/lib/chkstk.S
|
67
|
-
- ext/tcc/tcc-0.9.26/win32/lib/gdi32.def
|
68
|
-
- ext/tcc/tcc-0.9.26/win32/build-tcc.bat
|
69
|
-
- ext/tcc/tcc-0.9.26/win32/tcc-win32.txt
|
70
|
-
- ext/tcc/tcc-0.9.26/win32/tools/tiny_libmaker.c
|
71
|
-
- ext/tcc/tcc-0.9.26/win32/tools/tiny_impdef.c
|
72
|
-
- ext/tcc/tcc-0.9.26/win32/include/fcntl.h
|
73
|
-
- ext/tcc/tcc-0.9.26/win32/include/conio.h
|
74
|
-
- ext/tcc/tcc-0.9.26/win32/include/assert.h
|
75
|
-
- ext/tcc/tcc-0.9.26/win32/include/direct.h
|
76
|
-
- ext/tcc/tcc-0.9.26/win32/include/winapi/intrin.h
|
77
|
-
- ext/tcc/tcc-0.9.26/win32/include/winapi/wingdi.h
|
78
|
-
- ext/tcc/tcc-0.9.26/win32/include/winapi/winbase.h
|
79
|
-
- ext/tcc/tcc-0.9.26/win32/include/winapi/winuser.h
|
80
|
-
- ext/tcc/tcc-0.9.26/win32/include/winapi/reason.h
|
81
|
-
- ext/tcc/tcc-0.9.26/win32/include/winapi/pshpack2.h
|
82
|
-
- ext/tcc/tcc-0.9.26/win32/include/winapi/pshpack4.h
|
83
|
-
- ext/tcc/tcc-0.9.26/win32/include/winapi/stralign.h
|
84
|
-
- ext/tcc/tcc-0.9.26/win32/include/winapi/specstrings.h
|
85
|
-
- ext/tcc/tcc-0.9.26/win32/include/winapi/poppack.h
|
86
|
-
- ext/tcc/tcc-0.9.26/win32/include/winapi/winnls.h
|
87
|
-
- ext/tcc/tcc-0.9.26/win32/include/winapi/windef.h
|
88
|
-
- ext/tcc/tcc-0.9.26/win32/include/winapi/tvout.h
|
89
|
-
- ext/tcc/tcc-0.9.26/win32/include/winapi/winreg.h
|
90
|
-
- ext/tcc/tcc-0.9.26/win32/include/winapi/basetsd.h
|
91
|
-
- ext/tcc/tcc-0.9.26/win32/include/winapi/guiddef.h
|
92
|
-
- ext/tcc/tcc-0.9.26/win32/include/winapi/winnt.h
|
93
|
-
- ext/tcc/tcc-0.9.26/win32/include/winapi/pshpack8.h
|
94
|
-
- ext/tcc/tcc-0.9.26/win32/include/winapi/winver.h
|
95
|
-
- ext/tcc/tcc-0.9.26/win32/include/winapi/basetyps.h
|
96
|
-
- ext/tcc/tcc-0.9.26/win32/include/winapi/windows.h
|
97
|
-
- ext/tcc/tcc-0.9.26/win32/include/winapi/wincon.h
|
98
|
-
- ext/tcc/tcc-0.9.26/win32/include/winapi/winerror.h
|
99
|
-
- ext/tcc/tcc-0.9.26/win32/include/winapi/pshpack1.h
|
100
|
-
- ext/tcc/tcc-0.9.26/win32/include/winapi/winnetwk.h
|
101
|
-
- ext/tcc/tcc-0.9.26/win32/include/fenv.h
|
102
|
-
- ext/tcc/tcc-0.9.26/win32/include/values.h
|
103
|
-
- ext/tcc/tcc-0.9.26/win32/include/share.h
|
104
|
-
- ext/tcc/tcc-0.9.26/win32/include/wchar.h
|
105
|
-
- ext/tcc/tcc-0.9.26/win32/include/inttypes.h
|
106
|
-
- ext/tcc/tcc-0.9.26/win32/include/sys/fcntl.h
|
107
|
-
- ext/tcc/tcc-0.9.26/win32/include/sys/timeb.h
|
108
|
-
- ext/tcc/tcc-0.9.26/win32/include/sys/unistd.h
|
109
|
-
- ext/tcc/tcc-0.9.26/win32/include/sys/stat.h
|
110
|
-
- ext/tcc/tcc-0.9.26/win32/include/sys/file.h
|
111
|
-
- ext/tcc/tcc-0.9.26/win32/include/sys/time.h
|
112
|
-
- ext/tcc/tcc-0.9.26/win32/include/sys/utime.h
|
113
|
-
- ext/tcc/tcc-0.9.26/win32/include/sys/locking.h
|
114
|
-
- ext/tcc/tcc-0.9.26/win32/include/sys/types.h
|
115
|
-
- ext/tcc/tcc-0.9.26/win32/include/io.h
|
116
|
-
- ext/tcc/tcc-0.9.26/win32/include/stdlib.h
|
117
|
-
- ext/tcc/tcc-0.9.26/win32/include/limits.h
|
118
|
-
- ext/tcc/tcc-0.9.26/win32/include/wctype.h
|
119
|
-
- ext/tcc/tcc-0.9.26/win32/include/dirent.h
|
120
|
-
- ext/tcc/tcc-0.9.26/win32/include/string.h
|
121
|
-
- ext/tcc/tcc-0.9.26/win32/include/excpt.h
|
122
|
-
- ext/tcc/tcc-0.9.26/win32/include/_mingw.h
|
123
|
-
- ext/tcc/tcc-0.9.26/win32/include/process.h
|
124
|
-
- ext/tcc/tcc-0.9.26/win32/include/vadefs.h
|
125
|
-
- ext/tcc/tcc-0.9.26/win32/include/malloc.h
|
126
|
-
- ext/tcc/tcc-0.9.26/win32/include/signal.h
|
127
|
-
- ext/tcc/tcc-0.9.26/win32/include/stdio.h
|
128
|
-
- ext/tcc/tcc-0.9.26/win32/include/time.h
|
129
|
-
- ext/tcc/tcc-0.9.26/win32/include/dir.h
|
130
|
-
- ext/tcc/tcc-0.9.26/win32/include/locale.h
|
131
|
-
- ext/tcc/tcc-0.9.26/win32/include/errno.h
|
132
|
-
- ext/tcc/tcc-0.9.26/win32/include/math.h
|
133
|
-
- ext/tcc/tcc-0.9.26/win32/include/memory.h
|
134
|
-
- ext/tcc/tcc-0.9.26/win32/include/mem.h
|
135
|
-
- ext/tcc/tcc-0.9.26/win32/include/tchar.h
|
136
|
-
- ext/tcc/tcc-0.9.26/win32/include/dos.h
|
137
|
-
- ext/tcc/tcc-0.9.26/win32/include/sec_api/stdio_s.h
|
138
|
-
- ext/tcc/tcc-0.9.26/win32/include/sec_api/io_s.h
|
139
|
-
- ext/tcc/tcc-0.9.26/win32/include/sec_api/stralign_s.h
|
140
|
-
- ext/tcc/tcc-0.9.26/win32/include/sec_api/mbstring_s.h
|
141
|
-
- ext/tcc/tcc-0.9.26/win32/include/sec_api/time_s.h
|
142
|
-
- ext/tcc/tcc-0.9.26/win32/include/sec_api/wchar_s.h
|
143
|
-
- ext/tcc/tcc-0.9.26/win32/include/sec_api/tchar_s.h
|
144
|
-
- ext/tcc/tcc-0.9.26/win32/include/sec_api/crtdbg_s.h
|
145
|
-
- ext/tcc/tcc-0.9.26/win32/include/sec_api/search_s.h
|
146
|
-
- ext/tcc/tcc-0.9.26/win32/include/sec_api/string_s.h
|
147
|
-
- ext/tcc/tcc-0.9.26/win32/include/sec_api/sys/timeb_s.h
|
148
|
-
- ext/tcc/tcc-0.9.26/win32/include/sec_api/conio_s.h
|
149
|
-
- ext/tcc/tcc-0.9.26/win32/include/sec_api/stdlib_s.h
|
150
|
-
- ext/tcc/tcc-0.9.26/win32/include/stdint.h
|
151
|
-
- ext/tcc/tcc-0.9.26/win32/include/setjmp.h
|
152
|
-
- ext/tcc/tcc-0.9.26/win32/include/ctype.h
|
153
|
-
- ext/tcc/tcc-0.9.26/win32/examples/fib.c
|
154
|
-
- ext/tcc/tcc-0.9.26/win32/examples/dll.c
|
155
|
-
- ext/tcc/tcc-0.9.26/win32/examples/hello_dll.c
|
156
|
-
- ext/tcc/tcc-0.9.26/win32/examples/hello_win.c
|
157
|
-
- ext/tcc/tcc-0.9.26/stab.h
|
158
|
-
- ext/tcc/tcc-0.9.26/stab.def
|
159
|
-
- ext/tcc/tcc-0.9.26/libtcc.h
|
160
|
-
- ext/tcc/tcc-0.9.26/Makefile
|
58
|
+
- ext/tcc/tcc-0.9.26/Changelog
|
59
|
+
- ext/tcc/tcc-0.9.26/coff.h
|
161
60
|
- ext/tcc/tcc-0.9.26/configure
|
162
|
-
- ext/tcc/tcc-0.9.26/tccpe.c
|
163
|
-
- ext/tcc/tcc-0.9.26/i386-tok.h
|
164
|
-
- ext/tcc/tcc-0.9.26/tccrun.c
|
165
|
-
- ext/tcc/tcc-0.9.26/tcccoff.c
|
166
|
-
- ext/tcc/tcc-0.9.26/tcc.c
|
167
|
-
- ext/tcc/tcc-0.9.26/elf.h
|
168
61
|
- ext/tcc/tcc-0.9.26/conftest.c
|
169
|
-
- ext/tcc/tcc-0.9.26/
|
62
|
+
- ext/tcc/tcc-0.9.26/COPYING
|
63
|
+
- ext/tcc/tcc-0.9.26/elf.h
|
64
|
+
- ext/tcc/tcc-0.9.26/examples/ex1.c
|
65
|
+
- ext/tcc/tcc-0.9.26/examples/ex2.c
|
66
|
+
- ext/tcc/tcc-0.9.26/examples/ex3.c
|
67
|
+
- ext/tcc/tcc-0.9.26/examples/ex4.c
|
68
|
+
- ext/tcc/tcc-0.9.26/examples/ex5.c
|
69
|
+
- ext/tcc/tcc-0.9.26/.gitignore
|
170
70
|
- ext/tcc/tcc-0.9.26/i386-asm.c
|
171
|
-
- ext/tcc/tcc-0.9.26/
|
172
|
-
- ext/tcc/tcc-0.9.26/
|
71
|
+
- ext/tcc/tcc-0.9.26/i386-asm.h
|
72
|
+
- ext/tcc/tcc-0.9.26/i386-gen.c
|
73
|
+
- ext/tcc/tcc-0.9.26/i386-tok.h
|
74
|
+
- ext/tcc/tcc-0.9.26/il-gen.c
|
75
|
+
- ext/tcc/tcc-0.9.26/il-opcodes.h
|
173
76
|
- ext/tcc/tcc-0.9.26/include/float.h
|
174
|
-
- ext/tcc/tcc-0.9.26/include/stddef.h
|
175
77
|
- ext/tcc/tcc-0.9.26/include/stdarg.h
|
176
78
|
- ext/tcc/tcc-0.9.26/include/stdbool.h
|
177
|
-
- ext/tcc/tcc-0.9.26/include/
|
79
|
+
- ext/tcc/tcc-0.9.26/include/stddef.h
|
178
80
|
- ext/tcc/tcc-0.9.26/include/tcclib.h
|
179
|
-
- ext/tcc/tcc-0.9.26/
|
180
|
-
- ext/tcc/tcc-0.9.26/
|
181
|
-
- ext/tcc/tcc-0.9.26/
|
182
|
-
- ext/tcc/tcc-0.9.26/
|
183
|
-
- ext/tcc/tcc-0.9.26/
|
184
|
-
- ext/tcc/tcc-0.9.26/
|
185
|
-
- ext/tcc/tcc-0.9.26/
|
81
|
+
- ext/tcc/tcc-0.9.26/include/varargs.h
|
82
|
+
- ext/tcc/tcc-0.9.26/lib/alloca86_64.S
|
83
|
+
- ext/tcc/tcc-0.9.26/lib/alloca86-bt.S
|
84
|
+
- ext/tcc/tcc-0.9.26/lib/alloca86.S
|
85
|
+
- ext/tcc/tcc-0.9.26/lib/bcheck.c
|
86
|
+
- ext/tcc/tcc-0.9.26/lib/libtcc1.c
|
87
|
+
- ext/tcc/tcc-0.9.26/lib/Makefile
|
88
|
+
- ext/tcc/tcc-0.9.26/libtcc.c
|
89
|
+
- ext/tcc/tcc-0.9.26/libtcc.h
|
90
|
+
- ext/tcc/tcc-0.9.26/Makefile
|
91
|
+
- ext/tcc/tcc-0.9.26/README
|
92
|
+
- ext/tcc/tcc-0.9.26/stab.def
|
93
|
+
- ext/tcc/tcc-0.9.26/stab.h
|
94
|
+
- ext/tcc/tcc-0.9.26/tccasm.c
|
95
|
+
- ext/tcc/tcc-0.9.26/tcc.c
|
96
|
+
- ext/tcc/tcc-0.9.26/tcccoff.c
|
97
|
+
- ext/tcc/tcc-0.9.26/tcc-doc.html
|
186
98
|
- ext/tcc/tcc-0.9.26/tcc-doc.texi
|
187
|
-
- ext/tcc/tcc-0.9.26/
|
99
|
+
- ext/tcc/tcc-0.9.26/tccelf.c
|
100
|
+
- ext/tcc/tcc-0.9.26/tccgen.c
|
188
101
|
- ext/tcc/tcc-0.9.26/tcc.h
|
189
|
-
- ext/tcc/tcc-0.9.26/
|
190
|
-
- ext/tcc/tcc-0.9.26/
|
191
|
-
- ext/tcc/tcc-0.9.26/
|
192
|
-
- ext/tcc/tcc-0.9.26/x86_64-gen.c
|
193
|
-
- ext/tcc/tcc-0.9.26/tcc-doc.info
|
102
|
+
- ext/tcc/tcc-0.9.26/tccpe.c
|
103
|
+
- ext/tcc/tcc-0.9.26/tccpp.c
|
104
|
+
- ext/tcc/tcc-0.9.26/tccrun.c
|
194
105
|
- ext/tcc/tcc-0.9.26/tcctok.h
|
195
|
-
- ext/tcc/tcc-0.9.26/tests/tcctest.c
|
196
|
-
- ext/tcc/tcc-0.9.26/tests/gcctestsuite.sh
|
197
106
|
- ext/tcc/tcc-0.9.26/tests/asmtest.S
|
198
|
-
- ext/tcc/tcc-0.9.26/tests/Makefile
|
199
|
-
- ext/tcc/tcc-0.9.26/tests/libtcc_test.c
|
200
107
|
- ext/tcc/tcc-0.9.26/tests/boundtest.c
|
201
|
-
- ext/tcc/tcc-0.9.26/tests/
|
202
|
-
- ext/tcc/tcc-0.9.26/tests/
|
203
|
-
- ext/tcc/tcc-0.9.26/tests/
|
204
|
-
- ext/tcc/tcc-0.9.26/tests/
|
205
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/
|
206
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/
|
207
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/
|
108
|
+
- ext/tcc/tcc-0.9.26/tests/gcctestsuite.sh
|
109
|
+
- ext/tcc/tcc-0.9.26/tests/libtcc_test.c
|
110
|
+
- ext/tcc/tcc-0.9.26/tests/Makefile
|
111
|
+
- ext/tcc/tcc-0.9.26/tests/tcctest.c
|
112
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/00_assignment.c
|
113
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/00_assignment.expect
|
114
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/01_comment.c
|
208
115
|
- ext/tcc/tcc-0.9.26/tests/tests2/01_comment.expect
|
209
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/
|
210
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/
|
211
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/
|
212
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/
|
213
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/
|
214
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/
|
215
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/06_case.c
|
116
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/02_printf.c
|
117
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/02_printf.expect
|
118
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/03_struct.c
|
119
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/03_struct.expect
|
120
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/04_for.c
|
121
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/04_for.expect
|
216
122
|
- ext/tcc/tcc-0.9.26/tests/tests2/05_array.c
|
217
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/
|
218
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/
|
219
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/
|
220
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/
|
221
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/
|
222
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/
|
123
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/05_array.expect
|
124
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/06_case.c
|
125
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/06_case.expect
|
126
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/07_function.c
|
127
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/07_function.expect
|
128
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/08_while.c
|
129
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/08_while.expect
|
130
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/09_do_while.c
|
131
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/09_do_while.expect
|
223
132
|
- ext/tcc/tcc-0.9.26/tests/tests2/10_pointer.c
|
224
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/
|
225
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/54_goto.c
|
226
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/55_lshift_type.expect
|
133
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/10_pointer.expect
|
227
134
|
- ext/tcc/tcc-0.9.26/tests/tests2/11_precedence.c
|
228
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/
|
229
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/
|
230
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/
|
231
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/
|
232
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/
|
135
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/11_precedence.expect
|
136
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/12_hashdefine.c
|
137
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/12_hashdefine.expect
|
138
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/13_integer_literals.c
|
139
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/13_integer_literals.expect
|
140
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/14_if.c
|
141
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/14_if.expect
|
142
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/15_recursion.c
|
143
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/15_recursion.expect
|
144
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/16_nesting.c
|
145
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/16_nesting.expect
|
146
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/17_enum.c
|
147
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/17_enum.expect
|
148
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/18_include.c
|
149
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/18_include.expect
|
150
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/18_include.h
|
151
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/19_pointer_arithmetic.c
|
233
152
|
- ext/tcc/tcc-0.9.26/tests/tests2/19_pointer_arithmetic.expect
|
234
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/
|
235
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/
|
236
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/
|
237
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/
|
153
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/20_pointer_comparison.c
|
154
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/20_pointer_comparison.expect
|
155
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/21_char_array.c
|
156
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/21_char_array.expect
|
157
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/22_floating_point.c
|
158
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/22_floating_point.expect
|
159
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/23_type_coercion.c
|
160
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/23_type_coercion.expect
|
161
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/24_math_library.c
|
162
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/24_math_library.expect
|
163
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/25_quicksort.c
|
238
164
|
- ext/tcc/tcc-0.9.26/tests/tests2/25_quicksort.expect
|
239
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/
|
240
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/04_for.c
|
165
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/26_character_constants.c
|
241
166
|
- ext/tcc/tcc-0.9.26/tests/tests2/26_character_constants.expect
|
242
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/
|
243
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/07_function.c
|
244
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/29_array_address.c
|
245
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/52_unnamed_enum.expect
|
246
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/41_hashif.c
|
247
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/03_struct.expect
|
167
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/27_sizeof.c
|
248
168
|
- ext/tcc/tcc-0.9.26/tests/tests2/27_sizeof.expect
|
249
169
|
- ext/tcc/tcc-0.9.26/tests/tests2/28_strings.c
|
250
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/00_assignment.expect
|
251
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/22_floating_point.c
|
252
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/05_array.expect
|
253
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/06_case.expect
|
254
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/42_function_pointer.c
|
255
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/42_function_pointer.expect
|
256
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/18_include.h
|
257
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/23_type_coercion.c
|
258
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/30_hanoi.expect
|
259
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/55_lshift_type.c
|
260
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/32_led.c
|
261
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/39_typedef.expect
|
262
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/46_grep.c
|
263
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/08_while.expect
|
264
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/47_switch_return.c
|
265
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/21_char_array.expect
|
266
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/16_nesting.expect
|
267
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/50_logical_second_arg.c
|
268
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/09_do_while.c
|
269
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/45_empty_for.expect
|
270
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/13_integer_literals.c
|
271
170
|
- ext/tcc/tcc-0.9.26/tests/tests2/28_strings.expect
|
171
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/29_array_address.c
|
172
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/29_array_address.expect
|
173
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/30_hanoi.c
|
174
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/30_hanoi.expect
|
175
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/31_args.c
|
272
176
|
- ext/tcc/tcc-0.9.26/tests/tests2/31_args.expect
|
273
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/
|
274
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/08_while.c
|
275
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/01_comment.c
|
276
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/34_array_assignment.c
|
277
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/37_sprintf.expect
|
278
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/38_multiple_array_index.expect
|
279
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/02_printf.expect
|
280
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/LICENSE
|
281
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/07_function.expect
|
282
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/48_nested_break.expect
|
283
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/41_hashif.expect
|
284
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/37_sprintf.c
|
285
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/21_char_array.c
|
286
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/15_recursion.c
|
287
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/13_integer_literals.expect
|
177
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/32_led.c
|
288
178
|
- ext/tcc/tcc-0.9.26/tests/tests2/32_led.expect
|
289
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/
|
290
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/
|
291
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/
|
292
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/25_quicksort.c
|
293
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/40_stdio.expect
|
294
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/16_nesting.c
|
295
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/15_recursion.expect
|
296
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/12_hashdefine.expect
|
297
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/20_pointer_comparison.expect
|
298
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/02_printf.c
|
299
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/51_static.expect
|
179
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/33_ternary_op.c
|
180
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/33_ternary_op.expect
|
181
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/34_array_assignment.c
|
300
182
|
- ext/tcc/tcc-0.9.26/tests/tests2/34_array_assignment.expect
|
301
183
|
- ext/tcc/tcc-0.9.26/tests/tests2/35_sizeof.c
|
302
184
|
- ext/tcc/tcc-0.9.26/tests/tests2/35_sizeof.expect
|
303
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/31_args.c
|
304
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/18_include.expect
|
305
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/44_scoped_declarations.expect
|
306
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/19_pointer_arithmetic.c
|
307
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/03_struct.c
|
308
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/17_enum.expect
|
309
185
|
- ext/tcc/tcc-0.9.26/tests/tests2/36_array_initialisers.c
|
310
|
-
- ext/tcc/tcc-0.9.26/tests/tests2/24_math_library.c
|
311
186
|
- ext/tcc/tcc-0.9.26/tests/tests2/36_array_initialisers.expect
|
187
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/37_sprintf.c
|
188
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/37_sprintf.expect
|
189
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/38_multiple_array_index.c
|
190
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/38_multiple_array_index.expect
|
191
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/39_typedef.c
|
192
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/39_typedef.expect
|
193
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/40_stdio.c
|
194
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/40_stdio.expect
|
195
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/41_hashif.c
|
196
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/41_hashif.expect
|
197
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/42_function_pointer.c
|
198
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/42_function_pointer.expect
|
199
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/43_void_param.c
|
200
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/43_void_param.expect
|
201
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/44_scoped_declarations.c
|
202
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/44_scoped_declarations.expect
|
203
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/45_empty_for.c
|
204
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/45_empty_for.expect
|
205
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/46_grep.c
|
206
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/47_switch_return.c
|
207
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/47_switch_return.expect
|
208
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/48_nested_break.c
|
209
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/48_nested_break.expect
|
210
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/49_bracket_evaluation.c
|
211
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/49_bracket_evaluation.expect
|
212
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/50_logical_second_arg.c
|
213
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/50_logical_second_arg.expect
|
214
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/51_static.c
|
215
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/51_static.expect
|
216
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/52_unnamed_enum.c
|
217
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/52_unnamed_enum.expect
|
218
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/54_goto.c
|
312
219
|
- ext/tcc/tcc-0.9.26/tests/tests2/54_goto.expect
|
220
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/55_lshift_type.c
|
221
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/55_lshift_type.expect
|
222
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/LICENSE
|
223
|
+
- ext/tcc/tcc-0.9.26/tests/tests2/Makefile
|
224
|
+
- ext/tcc/tcc-0.9.26/texi2pod.pl
|
225
|
+
- ext/tcc/tcc-0.9.26/TODO
|
313
226
|
- ext/tcc/tcc-0.9.26/VERSION
|
227
|
+
- ext/tcc/tcc-0.9.26/win32/build-tcc.bat
|
228
|
+
- ext/tcc/tcc-0.9.26/win32/examples/dll.c
|
229
|
+
- ext/tcc/tcc-0.9.26/win32/examples/fib.c
|
230
|
+
- ext/tcc/tcc-0.9.26/win32/examples/hello_dll.c
|
231
|
+
- ext/tcc/tcc-0.9.26/win32/examples/hello_win.c
|
232
|
+
- ext/tcc/tcc-0.9.26/win32/include/assert.h
|
233
|
+
- ext/tcc/tcc-0.9.26/win32/include/conio.h
|
234
|
+
- ext/tcc/tcc-0.9.26/win32/include/ctype.h
|
235
|
+
- ext/tcc/tcc-0.9.26/win32/include/direct.h
|
236
|
+
- ext/tcc/tcc-0.9.26/win32/include/dirent.h
|
237
|
+
- ext/tcc/tcc-0.9.26/win32/include/dir.h
|
238
|
+
- ext/tcc/tcc-0.9.26/win32/include/dos.h
|
239
|
+
- ext/tcc/tcc-0.9.26/win32/include/errno.h
|
240
|
+
- ext/tcc/tcc-0.9.26/win32/include/excpt.h
|
241
|
+
- ext/tcc/tcc-0.9.26/win32/include/fcntl.h
|
242
|
+
- ext/tcc/tcc-0.9.26/win32/include/fenv.h
|
243
|
+
- ext/tcc/tcc-0.9.26/win32/include/inttypes.h
|
244
|
+
- ext/tcc/tcc-0.9.26/win32/include/io.h
|
245
|
+
- ext/tcc/tcc-0.9.26/win32/include/limits.h
|
246
|
+
- ext/tcc/tcc-0.9.26/win32/include/locale.h
|
247
|
+
- ext/tcc/tcc-0.9.26/win32/include/malloc.h
|
248
|
+
- ext/tcc/tcc-0.9.26/win32/include/math.h
|
249
|
+
- ext/tcc/tcc-0.9.26/win32/include/mem.h
|
250
|
+
- ext/tcc/tcc-0.9.26/win32/include/memory.h
|
251
|
+
- ext/tcc/tcc-0.9.26/win32/include/_mingw.h
|
252
|
+
- ext/tcc/tcc-0.9.26/win32/include/process.h
|
253
|
+
- ext/tcc/tcc-0.9.26/win32/include/sec_api/conio_s.h
|
254
|
+
- ext/tcc/tcc-0.9.26/win32/include/sec_api/crtdbg_s.h
|
255
|
+
- ext/tcc/tcc-0.9.26/win32/include/sec_api/io_s.h
|
256
|
+
- ext/tcc/tcc-0.9.26/win32/include/sec_api/mbstring_s.h
|
257
|
+
- ext/tcc/tcc-0.9.26/win32/include/sec_api/search_s.h
|
258
|
+
- ext/tcc/tcc-0.9.26/win32/include/sec_api/stdio_s.h
|
259
|
+
- ext/tcc/tcc-0.9.26/win32/include/sec_api/stdlib_s.h
|
260
|
+
- ext/tcc/tcc-0.9.26/win32/include/sec_api/stralign_s.h
|
261
|
+
- ext/tcc/tcc-0.9.26/win32/include/sec_api/string_s.h
|
262
|
+
- ext/tcc/tcc-0.9.26/win32/include/sec_api/sys/timeb_s.h
|
263
|
+
- ext/tcc/tcc-0.9.26/win32/include/sec_api/tchar_s.h
|
264
|
+
- ext/tcc/tcc-0.9.26/win32/include/sec_api/time_s.h
|
265
|
+
- ext/tcc/tcc-0.9.26/win32/include/sec_api/wchar_s.h
|
266
|
+
- ext/tcc/tcc-0.9.26/win32/include/setjmp.h
|
267
|
+
- ext/tcc/tcc-0.9.26/win32/include/share.h
|
268
|
+
- ext/tcc/tcc-0.9.26/win32/include/signal.h
|
269
|
+
- ext/tcc/tcc-0.9.26/win32/include/stdint.h
|
270
|
+
- ext/tcc/tcc-0.9.26/win32/include/stdio.h
|
271
|
+
- ext/tcc/tcc-0.9.26/win32/include/stdlib.h
|
272
|
+
- ext/tcc/tcc-0.9.26/win32/include/string.h
|
273
|
+
- ext/tcc/tcc-0.9.26/win32/include/sys/fcntl.h
|
274
|
+
- ext/tcc/tcc-0.9.26/win32/include/sys/file.h
|
275
|
+
- ext/tcc/tcc-0.9.26/win32/include/sys/locking.h
|
276
|
+
- ext/tcc/tcc-0.9.26/win32/include/sys/stat.h
|
277
|
+
- ext/tcc/tcc-0.9.26/win32/include/sys/timeb.h
|
278
|
+
- ext/tcc/tcc-0.9.26/win32/include/sys/time.h
|
279
|
+
- ext/tcc/tcc-0.9.26/win32/include/sys/types.h
|
280
|
+
- ext/tcc/tcc-0.9.26/win32/include/sys/unistd.h
|
281
|
+
- ext/tcc/tcc-0.9.26/win32/include/sys/utime.h
|
282
|
+
- ext/tcc/tcc-0.9.26/win32/include/tchar.h
|
283
|
+
- ext/tcc/tcc-0.9.26/win32/include/time.h
|
284
|
+
- ext/tcc/tcc-0.9.26/win32/include/vadefs.h
|
285
|
+
- ext/tcc/tcc-0.9.26/win32/include/values.h
|
286
|
+
- ext/tcc/tcc-0.9.26/win32/include/wchar.h
|
287
|
+
- ext/tcc/tcc-0.9.26/win32/include/wctype.h
|
288
|
+
- ext/tcc/tcc-0.9.26/win32/include/winapi/basetsd.h
|
289
|
+
- ext/tcc/tcc-0.9.26/win32/include/winapi/basetyps.h
|
290
|
+
- ext/tcc/tcc-0.9.26/win32/include/winapi/guiddef.h
|
291
|
+
- ext/tcc/tcc-0.9.26/win32/include/winapi/intrin.h
|
292
|
+
- ext/tcc/tcc-0.9.26/win32/include/winapi/poppack.h
|
293
|
+
- ext/tcc/tcc-0.9.26/win32/include/winapi/pshpack1.h
|
294
|
+
- ext/tcc/tcc-0.9.26/win32/include/winapi/pshpack2.h
|
295
|
+
- ext/tcc/tcc-0.9.26/win32/include/winapi/pshpack4.h
|
296
|
+
- ext/tcc/tcc-0.9.26/win32/include/winapi/pshpack8.h
|
297
|
+
- ext/tcc/tcc-0.9.26/win32/include/winapi/reason.h
|
298
|
+
- ext/tcc/tcc-0.9.26/win32/include/winapi/specstrings.h
|
299
|
+
- ext/tcc/tcc-0.9.26/win32/include/winapi/stralign.h
|
300
|
+
- ext/tcc/tcc-0.9.26/win32/include/winapi/tvout.h
|
301
|
+
- ext/tcc/tcc-0.9.26/win32/include/winapi/winbase.h
|
302
|
+
- ext/tcc/tcc-0.9.26/win32/include/winapi/wincon.h
|
303
|
+
- ext/tcc/tcc-0.9.26/win32/include/winapi/windef.h
|
304
|
+
- ext/tcc/tcc-0.9.26/win32/include/winapi/windows.h
|
305
|
+
- ext/tcc/tcc-0.9.26/win32/include/winapi/winerror.h
|
306
|
+
- ext/tcc/tcc-0.9.26/win32/include/winapi/wingdi.h
|
307
|
+
- ext/tcc/tcc-0.9.26/win32/include/winapi/winnetwk.h
|
308
|
+
- ext/tcc/tcc-0.9.26/win32/include/winapi/winnls.h
|
309
|
+
- ext/tcc/tcc-0.9.26/win32/include/winapi/winnt.h
|
310
|
+
- ext/tcc/tcc-0.9.26/win32/include/winapi/winreg.h
|
311
|
+
- ext/tcc/tcc-0.9.26/win32/include/winapi/winuser.h
|
312
|
+
- ext/tcc/tcc-0.9.26/win32/include/winapi/winver.h
|
313
|
+
- ext/tcc/tcc-0.9.26/win32/lib/chkstk.S
|
314
|
+
- ext/tcc/tcc-0.9.26/win32/lib/crt1.c
|
315
|
+
- ext/tcc/tcc-0.9.26/win32/lib/dllcrt1.c
|
316
|
+
- ext/tcc/tcc-0.9.26/win32/lib/dllmain.c
|
317
|
+
- ext/tcc/tcc-0.9.26/win32/lib/gdi32.def
|
318
|
+
- ext/tcc/tcc-0.9.26/win32/lib/kernel32.def
|
319
|
+
- ext/tcc/tcc-0.9.26/win32/lib/msvcrt.def
|
320
|
+
- ext/tcc/tcc-0.9.26/win32/lib/user32.def
|
321
|
+
- ext/tcc/tcc-0.9.26/win32/lib/wincrt1.c
|
322
|
+
- ext/tcc/tcc-0.9.26/win32/tcc-win32.txt
|
323
|
+
- ext/tcc/tcc-0.9.26/win32/tools/tiny_impdef.c
|
324
|
+
- ext/tcc/tcc-0.9.26/win32/tools/tiny_libmaker.c
|
314
325
|
- ext/tcc/tcc-0.9.26/x86_64-asm.h
|
315
|
-
- ext/tcc/tcc-0.9.26/
|
316
|
-
- ext/tcc/tcc-0.9.26/arm-gen.c
|
326
|
+
- ext/tcc/tcc-0.9.26/x86_64-gen.c
|
317
327
|
homepage: https://github.com/quark-zju/ruby-libtcc
|
318
328
|
licenses:
|
319
329
|
- BSD
|