fixed typos

This commit is contained in:
Timerix22 2024-01-02 12:28:04 +06:00
parent 60fa8c11c2
commit c20e1e8f1c
3 changed files with 6 additions and 6 deletions

View File

@ -63,7 +63,7 @@ gprof:
# compiles program and runs it with callgrind (part of valgrind)
# uses gprof2dot python script to generate function call tree (pip install gprof2dot)
# requires graphviz (https://www.graphviz.org/download/source/)
# P.S. detailed rezults can be viewed in KCacheGrind
# P.S. detailed results can be viewed in KCacheGrind
callgrind:
@cbuild/call_task.sh callgrind 2>&1 | tee make_raw.log

View File

@ -151,7 +151,7 @@ case "$TASK" in
# compiles program and runs it with callgrind (part of valgrind)
# uses gprof2dot python script to generate function call tree (pip install gprof2dot)
# requires graphviz (https://www.graphviz.org/download/source/)
# P.S. detailed rezults can be viewed in KCacheGrind
# P.S. detailed results can be viewed in KCacheGrind
callgrind)
OUTDIR="$OUTDIR/callgrind"
# -pg adds code to executable, that generates file containing function call info (gmon.out)

View File

@ -2,10 +2,10 @@
source cbuild/colors.sh
uname_rezult="$(uname -o)"
myprint "${GRAY}uname rezult: '$uname_rezult'"
uname_result="$(uname -o)"
myprint "${GRAY}uname result: '$uname_result'"
case "$uname_rezult" in
case "$uname_result" in
Msys | Cygwin | "MS/Windows")
OS=WINDOWS
;;
@ -19,7 +19,7 @@ case "$uname_rezult" in
OS=MACOS
;;
*)
error "unknown operating system: $uname_rezult"
error "unknown operating system: $uname_result"
;;
esac