Overview
Comment: | Don't use _Unwind_Backtrace on MiNT
It crashes. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
c255394e6016e9490247594649d19393 |
User & Date: | js on 2022-01-29 20:45:51 |
Other Links: | manifest | tags |
Context
2022-01-29
| ||
21:01 | OFScryptTests: Avoid 3rd test vector on MiNT check-in: 203186b3ea user: js tags: trunk | |
20:45 | Don't use _Unwind_Backtrace on MiNT check-in: c255394e60 user: js tags: trunk | |
19:38 | Use MS-DOS-style paths on MiNT check-in: b438bd9bd8 user: js tags: trunk | |
Changes
Modified configure.ac from [73f518f9b3] to [0f0c6381c8].
︙ | ︙ | |||
638 639 640 641 642 643 644 645 646 647 648 649 650 651 | ]) OBJCFLAGS="$old_OBJCFLAGS" ;; esac case "$host_os" in hpux*) dnl _Unwind_Backtrace() returns complete garbage on HP-UX. ;; *) AC_CHECK_FUNCS(_Unwind_Backtrace) ;; esac | > > > | 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 | ]) OBJCFLAGS="$old_OBJCFLAGS" ;; esac case "$host_os" in mint*) dnl _Unwind_Backtrace crashes on MiNT ;; hpux*) dnl _Unwind_Backtrace() returns complete garbage on HP-UX. ;; *) AC_CHECK_FUNCS(_Unwind_Backtrace) ;; esac |
︙ | ︙ |