[ 源代码: trivial-features ]
软件包:cl-trivial-features(20200702.gite7bb968-1)
cl-trivial-features 的相关链接
Debian 的资源:
下载源码包 trivial-features:
- [trivial-features_20200702.gite7bb968-1.dsc]
- [trivial-features_20200702.gite7bb968.orig.tar.xz]
- [trivial-features_20200702.gite7bb968-1.debian.tar.xz]
维护小组:
外部的资源:
- 主页 [www.cliki.net]
相似软件包:
abstraction layer for the *FEATURES* across Common Lisp implementations
trivial-features ensures consistent *FEATURES* across multiple Common Lisp implementations.
For example, on MacOS X platforms, while most Lisps push `:DARWIN` to `*FEATURES*`, CLISP and Allegro push `:MACOS` and `:MACOSX` instead, respectively. Some Lisps might not push any feature suggesting MacOS X at all. trivial-features will make sure all Lisps will have `:DARWIN` in the `*FEATURES*` list when running on MacOS X. This way, you can write
#+darwin foo #-darwin bar
instead of
#+(or darwin macos macosx) foo #-(or darwin macos macosx) bar
其他与 cl-trivial-features 有关的软件包
|
|
|
|
-
- rec: cl-alexandria
- collection of portable Common Lisp utilities
-
- rec: cl-cffi
- Common Foreign Function Interface for Common Lisp
-
- rec: cl-rt
- Common Lisp regression tester from MIT