#!/usr/bin/env python3 # build-aux/stack.c.gen - Analyze stack sizes for compiled objects # # Copyright (C) 2024-2025 Luke T. Shumaker # 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()