Skip to content

Commit

Permalink
Workaround for tilir#2
Browse files Browse the repository at this point in the history
  • Loading branch information
rudenkornk committed Apr 11, 2024
1 parent e846ae2 commit a73be27
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,16 @@ This will take some time, be patient. Benchmarking results will be created in th

You are welcome to create MR in results folder with your architecture and name it will help my talk!



## Troubleshooting

### error: 'uint64_t' does not name a type during `conan install` phase
```bash
cppbench_version=$(grep -a cppbenchmark conanfile.txt)
cppbench_path=$(conan cache path $cppbench_version)
cppbench_header_path=$cppbench_path/../s/src/include/benchmark/system.h
sed -i 's/<string>/<string>\n#include <cstdint>/' $cppbench_header_path
```

Note: normally it is highly discouraged to modify sources inside conan cache, this is just a temporary workaround

0 comments on commit a73be27

Please sign in to comment.