- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我按照 Frama-C 开发指南 (https://frama-c.com/download/frama-c-plugin-development-guide.pdf) 的说明创建了自己的 Frama-C 插件。
但是,我需要在我的 .ml 文件中使用 Ocaml 手册 (http://caml.inria.fr/pub/docs/manual-ocaml/libref/Mutex.html) 提供的 Mutex 模块。要使用这个模块,我需要一个特定的命令行:
ocamlc -thread unix.cma threads.cma myfiles.ml
(如此处所述:OCaml Mutex module cannot be found)。
为了编译我的文件,我使用了构建插件的 Makefile(插件开发指南第 33 页)。所以我试图将这些 .cma 文件和 -thread 选项链接到这个 Makefile ......但我没有成功。 如何加载这个 Mutex 模块?
我试过的:
PLUBIN_EXTRA_BYTE = unix.cma threads.cma
TARGET_TOP_CMA = unix.cma threads.cma
PLUGIN_OFLAGS = -thread
PLUGIN_LINK_BFLAGS= -thread
PLUGIN_BFLAGS= -thread
open Dynlink
loadfile "unix.cma";;
loadfile "threads.cma";;
Unbound module Mutex
.
最佳答案
插件开发指南的第 5.2.3 节给出了可用于自定义 Makefile 的变量列表。值得注意的是,如果要链接到外部库,可以使用 PLUGIN_EXTRA_BYTE
和 PLUGIN_EXTRA_OPT
,以及 PLUGIN_LINK_BFLAGS
和 PLUGIN_LINK_OFLAGS
添加 -thread
选项。这是 Makefile
这应该可以工作(当然,您需要根据您的实际源文件来完成它)。
ifndef FRAMAC_SHARE
FRAMAC_SHARE:=$(shell frama-c-config -print-share-path)
endif
PLUGIN_NAME:=Test_mutex
PLUGIN_BFLAGS:=-thread
PLUGIN_OFLAGS:=-thread
PLUGIN_EXTRA_BYTE:=$(shell ocamlfind query threads)/threads/threads.cma
PLUGIN_EXTRA_OPT:=$(shell ocamlfind query threads)/threads/threads.cmxa
PLUGIN_LINK_BFLAGS:=-thread
PLUGIN_LINK_OFLAGS:=-thread
PLUGIN_CMO:= # list of modules of the plugin
include $(FRAMAC_SHARE)/Makefile.dynamic
PLUGIN_REQUIRES
变量,并让
ocamlfind
照顾好一切,除了
threads
在这方面似乎有点奇怪。
关于makefile - 如何将 .cma 文件链接到我自己的 Frama_C 插件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50723474/
我是一名优秀的程序员,十分优秀!