https://github.com/ymdarake/learncpp
https://github.com/ymdarake/learncpp
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ymdarake/learncpp
- Owner: ymdarake
- Created: 2022-09-17T00:57:55.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-09-18T13:31:05.000Z (almost 4 years ago)
- Last Synced: 2025-03-05T18:56:59.273Z (over 1 year ago)
- Language: C++
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Build
```bash
$ cmake -GNinja -S src -B build
$ ninja -C build
$ ./build/LearnCPP
```
# debug note
```bash
lldb ./bin/learncpp
(lldb) target create ./bin/learncpp
(lldb) breakpoint list
(lldb) breakpoint set --name main
(lldb) breakpoint set --file main.cpp --line 7
(lldb) run
(lldb) frame variable
(lldb) process continue
(lldb) thread continue
--
(lldb) gui
```
## links
- https://lldb.llvm.org/use/tutorial.html
- https://qiita.com/theefool/items/8b985ce71dcdccf26abc
- https://ninja-build.org/manual.html