An open API service indexing awesome lists of open source software.

https://github.com/ymdarake/learncpp


https://github.com/ymdarake/learncpp

Last synced: about 2 months ago
JSON representation

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