Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

chore: Update Linux kernel version to v6.8 in Makefile #226

Merged
merged 3 commits into from
May 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .vscode/c_cpp_properties.json.template
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"third-party/BearSSL/inc/",
"third-party/parson/",
"third-party/picohttpparser/",
"third-party/wasm3/source/"
"third-party/wasm3/source/",
"${workspaceFolder}/include"
],
"macFrameworkPath": [],
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -175,9 +175,9 @@ setup-dev-env:
test -f .vscode/c_cpp_properties.json || cp .vscode/c_cpp_properties.json.template .vscode/c_cpp_properties.json
brew tap messense/macos-cross-toolchains
brew install $(shell lima uname -m)-unknown-linux-gnu
test -d ../linux || git clone --depth=1 --branch v6.2 https://github.com/torvalds/linux.git ../linux
test -d ../linux || git clone --depth=1 --branch v6.8 https://github.com/torvalds/linux.git ../linux
cd ../linux && lima make tinyconfig
cd ../linux && lima make -j
cd ../linux && lima make -j2

# Usage: make debug LINE=get_command+0x88/0x130
debug:
Expand Down