https://github.com/ymdarake/kaleidoscope
https://github.com/ymdarake/kaleidoscope
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ymdarake/kaleidoscope
- Owner: ymdarake
- Created: 2022-09-18T13:20:14.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-09-19T08:12:03.000Z (almost 4 years ago)
- Last Synced: 2025-03-05T18:57:06.259Z (over 1 year ago)
- Language: C++
- Size: 20.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Kaleidoscope
https://llvm.org/docs/tutorial/MyFirstLanguageFrontend/index.html
## Build
```bash
$ cd build
$ cmake ..
$ make all
$ ctest
$ ./Kaleidoscope-googletest
$ ./Kaleidoscope
```
## GoogleTest setup
https://github.com/google/googletest/blob/main/googletest/README.md#standalone-cmake-project
```bash
git clone https://github.com/google/googletest.git -b release-1.12.0
cd googletest # Main directory of the cloned repository.
mkdir build # Create a directory to hold the build output.
cd build
cmake .. # Generate native build scripts for GoogleTest.
make
sudo make install # Install in /usr/local/ by default
```