This website requires JavaScript.
Explore
Help
Sign In
GitHub
/
pbot
Watch
3
Star
0
Fork
0
You've already forked pbot
mirror of
https://github.com/pragma-/pbot.git
synced
2024-11-01 01:29:31 +01:00
Code
Issues
Projects
Releases
Wiki
Activity
d6e81a4781
pbot
/
modules
/
compiler_vm
/
languages
/
server
/
c11.pm
10 lines
83 B
Perl
Raw
Normal View
History
Unescape
Escape
Significantly refactor compiler_vm module The compiler_vm module has been significantly refactored into distinct modules in order to better facilitate the addition of other languages and compilers. Currently there is support for C89, C99 and C11 using gcc, as well as support for Perl. This is an initial work-in-progress commit and there are still some minor rough edges to polish up.
2015-01-15 06:51:17 +01:00
#!/usr/bin/perl
use
warnings
;
use
strict
;
package
c11
;
Add compiler_vm support for clang Also renamed c11.pm to _c_base.pm and set the C languages to inherit from _c_base.pm instead of c11.pm.
2015-01-15 10:21:18 +01:00
use
parent
'_c_base'
;
Significantly refactor compiler_vm module The compiler_vm module has been significantly refactored into distinct modules in order to better facilitate the addition of other languages and compilers. Currently there is support for C89, C99 and C11 using gcc, as well as support for Perl. This is an initial work-in-progress commit and there are still some minor rough edges to polish up.
2015-01-15 06:51:17 +01:00
1
;
Reference in New Issue
Copy Permalink