--- www/Tutorial-1.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/www/Tutorial-1.html b/www/Tutorial-1.html index beb306e..27d3c56 100644 --- a/www/Tutorial-1.html +++ b/www/Tutorial-1.html @@ -59,14 +59,14 @@ KLEE operates on LLVM bitcode. To run a program with KLEE, you first compile it to LLVM bitcode using <tt>llvm-gcc - --emit-llvm</tt>. Assuming our code is stored in <tt>demo.c</tt>, + --emit-llvm</tt>. Assuming our code is stored in <tt>get_sign.c</tt>, we run: <div class="instr"> llvm-gcc --emit-llvm -c -g get_sign.c </div> - to generate the LLVM bitcode file <tt>demo.o</tt>. + to generate the LLVM bitcode file <tt>get_sign.o</tt>. It is useful to (1) build with <tt>-g</tt> to add debug information to the bitcode file, which we use to generate source line level -- 1.7.10.4 _______________________________________________ klee-dev mailing list [email protected] http://keeda.Stanford.EDU/mailman/listinfo/klee-dev
