We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Either valgrind or a memory sanitizer:
nim r -d:danger --mm:orc --debugger:native -d:useMalloc --debuginfo:on --linedir:on --passC:'-fno-omit-frame-pointer' --passC:'-mno-omit-leaf-frame-pointer' --passC:"-fsanitize=address" --passL:"-fsanitize=address" tests/testclient.nim
nim c -d:danger --mm:orc --debugger:native --threads:off -d:useMalloc tests/testclient.nim && valgrind --leak-check=full --show-leak-kinds=all ./tests/testclient
Yet another, maybe better way is to pass -d:nimAllocStats and use getAllocStats() and check stats.allocCount == stats.deallocCount
-d:nimAllocStats
getAllocStats()
stats.allocCount == stats.deallocCount
The text was updated successfully, but these errors were encountered:
blocked by nim-lang/Nim#23615
Sorry, something went wrong.
No branches or pull requests
Either valgrind or a memory sanitizer:
Yet another, maybe better way is to pass
-d:nimAllocStats
and usegetAllocStats()
and checkstats.allocCount == stats.deallocCount
The text was updated successfully, but these errors were encountered: