We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ced16af commit adb9fe3Copy full SHA for adb9fe3
1 file changed
README.md
@@ -1,3 +1,23 @@
1
# hSim
2
3
Hi there. We introduce high perfomance CPU simulator model.
4
+
5
+## How to build
6
+### Requirements
7
+* c++20-compatible compiler (tested on clang++ 18.1.3, g++ 13.3.0, but a bit older compilers seems to be ok)
8
+* CMake 3.19
9
+* Ruby 3.0
10
+* Build is tested on Ubuntu 24.04
11
12
+To build:
13
+```bash
14
+cmake -S <path_to_repo_root> -B <path_to_build> [-G Ninja]
15
+cmake --build <path_to_build> --parallel <amount_of_jobs>
16
+```
17
+Ninja is optional, but it looks really pretty
18
+After build, you can run our simulator and get some help info
19
20
+./build/hSim --help
21
22
23
0 commit comments