我是Frama-C框架的新手,我正在尝试用C程序进行一些合同测试。我打算为此使用E-ACSL插件,我尝试了一个测试程序,看看它是如何工作的,但是我得到了一些编译错误。这是我的代码:
#include <stdio.h>
#include <stdlib.h>
int main(void) {
int x = 0;
/*@ assert x == 1;*/
/*@ assert x == 0;*/
return 0;
}
然后,这是Frama-C注释代码:
/* Generated by Frama-C */
#include "stdio.h"
#include "stdlib.h"
struct __e_acsl_mpz_struct {
int _mp_alloc ;
int _mp_size ;
unsigned long *_mp_d ;
};
typedef struct __e_acsl_mpz_struct __e_acsl_mpz_struct;
typedef __e_acsl_mpz_struct ( __attribute__((__FC_BUILTIN__)) __e_acsl_mpz_t)[1];
/*@ ghost extern int __e_acsl_init; */
/*@ ghost extern int __e_acsl_internal_heap; */
extern size_t __e_acsl_heap_allocation_size;
/*@
predicate diffSize{L1, L2}(ℤ i) =
\at(__e_acsl_heap_allocation_size,L1) -
\at(__e_acsl_heap_allocation_size,L2) ≡ i;
*/
int main(void)
{
int __retres;
int x = 0;
/*@ assert x ≡ 1; */ ;
/*@ assert x ≡ 0; */ ;
__retres = 0;
return __retres;
}
最后,我尝试使用gcc和manual指示的标记(第13页)进行编译,但是我收到以下错误(和警告):
$ gcc monitored_second.c -o monitored_second -leacsl -leacsl-gmp -leacsl -jemalloc -lpthread -lm
monitored_second.c:10:1: warning: ‘__FC_BUILTIN__’ attribute directive ignored [-Wattributes]
typedef __e_acsl_mpz_struct ( __attribute__((__FC_BUILTIN__)) __e_acsl_mpz_t)[1];
monitored_second.c:18:55: warning: ‘__FC_BUILTIN__’ attribute directive ignored [-Wattributes]
int line);
^
monitored_second.c:25:60: warning: ‘__FC_BUILTIN__’ attribute directive ignored [-Wattributes]
size_t ptr_size);
^
/usr/bin/ld: cannot find -leacsl
/usr/bin/ld: cannot find -leacsl-jemalloc
collect2: error: ld returned 1 exit status
我还删除了“-rtl-bittree”标签,因为它返回了另一个错误。
Frama-C版本是最新的:Sulphur-20171101 知道发生了什么事吗?
谢谢!
答案 0 :(得分:2)
通常,您应该在e-acsl-gcc.sh
二进制文件所在的目录中安装一个名为frama-c
的脚本,该脚本可以使用适当的选项来调用gcc
。其基本用法在本手册的第2.2节中有说明,man e-acsl-gcc.sh
提供了有关可以使用的选项的更多详细信息。简而言之,您应该能够输入
e-acsl-gcc.sh -c \
--oexec-eacsl=first_monitored \
--oexec=first \
--ocode=first_monitored.i \
first.i
获取
first_monitored
first
first_monitored.i
,其中包含e-acsl生成的C代码 编辑查看脚本使用的链接命令,我要说手册前面提出的命令行已过时(特别是它指{{1}而} eacsl-jemalloc
似乎更喜欢e-acsl-gcc.sh
),这可能会被报告为https://bts.frama-c.com