Re: [CIL users] Problem in adding a feature to Cil

2009-04-04 Thread John Smith
Hi: Run the command: "cilly --help" If you've properly added your feature, then in the output you should see the following line: "--doSimpletest [fd_description]" Where fd_description is the value of the fd_description member of the feature record in your code. In your example, it would be "g

[CIL users] Problem in adding a feature to Cil

2009-04-01 Thread Divya Krishnan
Hello all, I am completely new to Cil and as a first step I was trying to add a simple module as a feature to cil. I did the following: My module is simpletest.ml open Pretty open Cil let rec fact n = if n < 2 then 1 else n * fact(n-1) let doIt n = fact n let feature : featureDescr = { fd_n