cargo new hello-rust
cargo new prob1 --lib
cargo test
cargo run
cargo check
cargo fmt
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh- sdk oversion : https://develop.sentry.dev/sdk/overview/
- store(report using Post, json) : https://develop.sentry.dev/sdk/store/
- stack trace interface : https://develop.sentry.dev/sdk/event-payloads/stacktrace/
[sentry] INFO using database path "C:\Users\red\source\repos\sentry-upload-tester\sentry-upload-tester\.sentry-native"
[sentry] DEBUG starting transport
[sentry] DEBUG starting background worker thread
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CXX = g++ | |
| DIR = src | |
| BUILD_DIR = bin | |
| SRCS = $(shell find src -name '*.cc') | |
| INCLUDE = -Iinclude | |
| LIBS = -std=c++14 -g | |
| all: | |
| mkdir -p bin | |
| $(CXX) $(SRCS) example/$(main).cc -o $(BUILD_DIR)/$(main) $(LIBS) $(INCLUDE) |
- rustcommon(https://github.com/twitter/rustcommon)