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

📄 gcc.l

📁 A very small LISP implementation with several packages and demo programs.
💻 L
字号:
# 16nov07abu# (c) Software Lab. Alexander Burger(de gcc (S L . @)   (out (tmp S ".c")      (chdir '@ (prinl "#include \"" (pwd) "/src/pico.h\""))      (here "/**/") )   ~(case *OS      (("Linux" "FreeBSD")         (quote            (apply call L 'gcc "-o" (tmp S)               "-shared" "-export-dynamic"               "-O" "-falign-functions" "-fomit-frame-pointer"               "-W" "-Wimplicit" "-Wreturn-type" "-Wunused" "-Wformat"               "-Wuninitialized" "-Wstrict-prototypes"               "-pipe" "-D_GNU_SOURCE" "-D_FILE_OFFSET_BITS=64" (tmp S ".c") ) ) )      ("Darwin"         (quote            (sys "MACOSX_DEPLOYMENT_TARGET" "10.4")            (apply call L 'gcc "-o" (tmp S)               "-dynamiclib" "-undefined" "dynamic_lookup"               "-O" "-falign-functions" "-fomit-frame-pointer"               "-W" "-Wimplicit" "-Wreturn-type" "-Wunused" "-Wformat"               "-Wuninitialized" "-Wstrict-prototypes"               "-pipe" "-D_GNU_SOURCE" "-D_FILE_OFFSET_BITS=64" (tmp S ".c") ) ) )      ("Cygwin"         (quote            (call 'gcc "-c"               "-Os" "-falign-functions" "-fomit-frame-pointer"               "-W" "-Wimplicit" "-Wreturn-type" "-Wunused" "-Wformat"               "-Wuninitialized" "-Wstrict-prototypes"               "-pipe" "-D_GNU_SOURCE" "-D_FILE_OFFSET_BITS=64"               (pack "-I" (path "@src") )               "-o" (tmp S ".o") (tmp S ".c"))            (apply call L 'gcc "-shared" "-o" (tmp S ".dll")               (tmp S ".o")               (path "@bin/picolisp.dll") ) ) ) )   (while (args)      (def (next) (def (tmp S ': (arg)))) ) )# vi:et:ts=3:sw=3

⌨️ 快捷键说明

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