blob: 713630a15b08c6fd53543c90bd41a7d61164c3fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/usr/bin/env python3
# build-aux/stack.c.gen - Analyze stack sizes for compiled objects
#
# Copyright (C) 2024-2025 Luke T. Shumaker <lukeshu@lukeshu.com>
# SPDX-License-Identifier: AGPL-3.0-or-later
import os.path
import sys
sys.path.insert(0, os.path.normpath(os.path.join(__file__, "..")))
import measurestack # pylint: disable=wrong-import-position
if __name__ == "__main__":
measurestack.main()
|