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) # compiles program and runs it with callgrind (part of valgrind)
# uses gprof2dot python script to generate function call tree (pip install gprof2dot) # uses gprof2dot python script to generate function call tree (pip install gprof2dot)
# requires graphviz (https://www.graphviz.org/download/source/) # 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: callgrind:
@cbuild/call_task.sh callgrind 2>&1 | tee make_raw.log @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) # compiles program and runs it with callgrind (part of valgrind)
# uses gprof2dot python script to generate function call tree (pip install gprof2dot) # uses gprof2dot python script to generate function call tree (pip install gprof2dot)
# requires graphviz (https://www.graphviz.org/download/source/) # 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) callgrind)
OUTDIR="$OUTDIR/callgrind" OUTDIR="$OUTDIR/callgrind"
# -pg adds code to executable, that generates file containing function call info (gmon.out) # -pg adds code to executable, that generates file containing function call info (gmon.out)

View File

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