⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tcc.l

📁 A very small LISP implementation with several packages and demo programs.
💻 L
字号:
# 21jan07abu# (c) Software Lab. Alexander Burger# use the Tiny C Compiler http://fabrice.bellard.free.fr/tcc(de tcc (S L . @)   (out (tmp S ".c")      (chdir '@ (prinl "#include <pico.h>"))      (here "/**/") )   (apply call L 'tcc "-shared" "-rdynamic"      (pack "-I" (dospath "/usr/include"))      (pack "-I" (dospath (path "@/src")))      "-falign-functions" "-fomit-frame-pointer"      "-W" "-Wimplicit" "-Wreturn-type" "-Wunused" "-Wformat"      "-Wuninitialized" "-Wstrict-prototypes" "-pipe"      "-D_GNU_SOURCE" "-D_FILE_OFFSET_BITS=64" "-DNOWAIT"      "-o" (tmp S ".dll") (tmp S ".c")      (dospath (path "@/bin/picolisp.def")))   (while (args)      (def (next) (def (tmp S ': (arg)))) ) )(de dospath (p)   (in '("cygpath" "-m" p) (line T)) )

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -