Zend certified PHP/Magento developer

How to show stack size of an executable file?

GCC can be provided with a linker option to set a custom stack size for a program:

gcc -Wl,-z,stack-size=4194304 file.c

In Linux, how do I find out what this stack size value was when the executable was compiled?