Skip to content

Commit

Permalink
build: fix derp
Browse files Browse the repository at this point in the history
Signed-off-by: He Xian <hexian000@outlook.com>
  • Loading branch information
hexian000 committed Oct 16, 2024
1 parent 121f41c commit 184cee6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions m.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ case "$1" in
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON \
-S . -B "build"
nice cmake --build "build"
(cd "build/src" && objdump -drwS "neosocksd" >"neosocksd.S")
(cd "build/bin" && objdump -drwS "neosocksd" >"neosocksd.S")
ls -lh "build/bin/neosocksd"
;;
"posix")
Expand All @@ -79,7 +79,7 @@ case "$1" in
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON \
-S . -B "build"
nice cmake --build "build"
(cd "build/src" && llvm-objdump -drwS "neosocksd" >"neosocksd.S")
(cd "build/bin" && llvm-objdump -drwS "neosocksd" >"neosocksd.S")
ls -lh "build/bin/neosocksd"
;;
"msys2")
Expand Down Expand Up @@ -110,7 +110,7 @@ case "$1" in
-DLINK_STATIC_LIBS=ON \
-S "." -B "build"
nice cmake --build "build"
ls -lh "build/src/kcptun-libev"
ls -lh "build/bin/neosocksd"
;;
"d")
if command -v clang-format >/dev/null; then
Expand Down

0 comments on commit 184cee6

Please sign in to comment.