Skip to content

Commit 1a469f5

Browse files
committed
[chore] Update version and README.md
1 parent 0a80185 commit 1a469f5

File tree

2 files changed

+9
-28
lines changed

2 files changed

+9
-28
lines changed

CMakeLists.txt

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,21 @@
1111
# Minimum CMake version and policies
1212
###############################################################################
1313
cmake_minimum_required(VERSION 3.16.0)
14-
project(KLEE CXX C)
14+
project(KLEEF CXX C)
1515

1616
###############################################################################
1717
# Project version
1818
###############################################################################
1919
set(KLEE_VERSION_MAJOR 3)
20-
set(KLEE_VERSION_MINOR 0-utbot)
2120
set(KLEE_VERSION "${KLEE_VERSION_MAJOR}.${KLEE_VERSION_MINOR}")
2221

2322
# If a patch is needed, we can add KLEE_VERSION_PATCH
2423
# set(KLEE_VERSION_PATCH 0)
2524
# set(KLEE_VERSION "${KLEE_VERSION_MAJOR}.${KLEE_VERSION_MINOR}.${KLEE_VERSION_PATCH}")
2625

27-
message(STATUS "KLEE version ${KLEE_VERSION}")
28-
set(PACKAGE_STRING "\"KLEE ${KLEE_VERSION}\"")
29-
set(PACKAGE_URL "\"https://klee.github.io\"")
26+
message(STATUS "KLEEF version ${KLEE_VERSION}")
27+
set(PACKAGE_STRING "\"KLEEF ${KLEE_VERSION}\"")
28+
set(PACKAGE_URL "\"https://toolchain-labs.com/projects/kleef.html\"")
3029

3130
################################################################################
3231
# Sanity check - Disallow building in source.

README.md

Lines changed: 5 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,9 @@
1-
KLEE Symbolic Virtual Machine
1+
KLEEF Symbolic Virtual Machine
22
=============================
33

4-
[![Build Status](https://github.com/klee/klee/workflows/CI/badge.svg)](https://github.com/klee/klee/actions?query=workflow%3ACI)
5-
[![Build Status](https://api.cirrus-ci.com/github/klee/klee.svg)](https://cirrus-ci.com/github/klee/klee)
6-
[![Coverage](https://codecov.io/gh/klee/klee/branch/master/graph/badge.svg)](https://codecov.io/gh/klee/klee)
4+
[![Build Status](https://github.com/UnitTestBot/klee/workflows/CI/badge.svg)](https://github.com/UnitTestBot/klee/actions?query=workflow%3ACI)
5+
[![Coverage](https://codecov.io/gh/UnitTestBot/klee/branch/main/graph/badge.svg)](https://codecov.io/gh/UnitTestBot/klee)
76

8-
`KLEE` is a symbolic virtual machine built on top of the LLVM compiler
9-
infrastructure. Currently, there are two primary components:
107

11-
1. The core symbolic virtual machine engine; this is responsible for
12-
executing LLVM bitcode modules with support for symbolic
13-
values. This is comprised of the code in lib/.
14-
15-
2. A POSIX/Linux emulation layer oriented towards supporting uClibc,
16-
with additional support for making parts of the operating system
17-
environment symbolic.
18-
19-
Additionally, there is a simple library for replaying computed inputs
20-
on native code (for closed programs). There is also a more complicated
21-
infrastructure for replaying the inputs generated for the POSIX/Linux
22-
emulation layer, which handles running native programs in an
23-
environment that matches a computed test input, including setting up
24-
files, pipes, environment variables, and passing command line
25-
arguments.
26-
27-
For further information, see the [webpage](http://klee.github.io/).
8+
`KLEEF`` is a complete overhaul of the KLEE symbolic execution engine for LLVM, fine-tuned for a robust analysis of industrial C/C++ code.
9+
For further information, see the [webpage](https://toolchain-labs.com/projects/kleef.html).

0 commit comments

Comments
 (0)