Changes In Branch 1.2 Through [6bb25d33ac] Excluding Merge-Ins
This is equivalent to a diff from c5f91347e7 to 6bb25d33ac
2024-11-08
| ||
22:43 | OFColor: Improve style of deprecation message check-in: ff29e35344 user: js tags: 1.2 | |
20:57 | Make ObjC++ exceptions work with libc++ on Windows check-in: 6bb25d33ac user: js tags: 1.2 | |
20:56 | Make ObjC++ exceptions work with libc++ on Windows check-in: c97a357529 user: js tags: trunk | |
2024-11-07
| ||
21:17 | Add support for MPTCP check-in: 49f5cd5ec5 user: js tags: trunk | |
21:07 | Merge trunk into 1.2 branch check-in: 10cce4f6ef user: js tags: 1.2 | |
2024-11-06
| ||
21:28 | objfw-compile: Remove handling of .bundle check-in: c5f91347e7 user: js tags: trunk | |
2024-11-05
| ||
23:48 | GitHub Actions: Add ObjC++ test on 32 bit Ubuntu check-in: 77b155c1da user: js tags: trunk | |
Modified configure.ac from [b60b759470] to [14f2e39cfd].
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | - + - + - |
|
︙ | |||
2117 2118 2119 2120 2121 2122 2123 | 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 | - + | ]) AS_IF([test x"$GOBJC" = x"yes"], [ OBJCFLAGS="$OBJCFLAGS -Wwrite-strings -Wpointer-arith" AC_ARG_ENABLE(werror, AS_HELP_STRING([--disable-werror], [do not build with -Werror])) |
︙ |
Modified src/runtime/exception.m from [7f6288ce90] to [b7aba5c4db].
︙ | |||
788 789 790 791 792 793 794 | 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 | - - - + + + + - - + + + + + - - + + | typedef EXCEPTION_DISPOSITION (*seh_personality_fn)(PEXCEPTION_RECORD, void *, PCONTEXT, PDISPATCHER_CONTEXT); static seh_personality_fn __gxx_personality_seh0; OF_CONSTRUCTOR() { /* |
︙ |