According to the document[1]:
Starting with GCC version 4.6, the default setting (when not optimizing for size) for 32-bit Linux x86 and 32-bit Darwin x86 targets has been changed to -fomit-frame-pointer. The default can be reverted to -fno-omit-frame-pointer by configuring GCC with the --enable-frame-pointer configure option.
The workaround is adding -fno-omit-frame-pointer opton like this:
make mingw MYCFLAGS=-fno-omit-frame-pointer
Regards,
Park Heesob