Changes In Branch 1.2 Through [f51da33bea] Excluding Merge-Ins
This is equivalent to a diff from c5f91347e7 to f51da33bea
2024-11-09
| ||
00:55 | GitHub Actions: Add ObjC++ test on Windows/MSYS2 check-in: c0500dcabf user: js tags: 1.2 | |
00:47 | Increase library versions check-in: 290e272b00 user: js tags: trunk | |
00:46 | Increase library versions check-in: f51da33bea user: js tags: 1.2 | |
00:42 | Make ObjC++ exceptions work on Windows with DWARF check-in: 105d2f60b7 user: js tags: 1.2 | |
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 extra.mk.in from [ee822dd682] to [dc906c47d1].
1 2 3 4 5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | - + - + | OBJFW_SHARED_LIB = @OBJFW_SHARED_LIB@ OBJFW_STATIC_LIB = @OBJFW_STATIC_LIB@ OBJFW_FRAMEWORK = @OBJFW_FRAMEWORK@ OBJFW_LIB_MAJOR = 1 OBJFW_LIB_MINOR = 2 |
︙ | |||
29 30 31 32 33 34 35 | 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | - + | OBJFWTLS_LIB_PATCH = 2 OBJFWHID_SHARED_LIB = @OBJFWHID_SHARED_LIB@ OBJFWHID_STATIC_LIB = @OBJFWHID_STATIC_LIB@ OBJFWHID_FRAMEWORK = @OBJFWHID_FRAMEWORK@ OBJFWHID_LIB_MAJOR = 1 OBJFWHID_LIB_MINOR = 0 |
︙ |
Modified src/OFColor.h from [aeb31a556f] to [f08834ff4d].
︙ | |||
28 29 30 31 32 33 34 | 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | - + | */ @interface OFColor: OFObject #ifdef OF_HAVE_CLASS_PROPERTIES @property (class, readonly, nonatomic) OFColor *black; @property (class, readonly, nonatomic) OFColor *silver; @property (class, readonly, nonatomic) OFColor *gray; @property (class, readonly, nonatomic) OFColor *grey |
︙ | |||
95 96 97 98 99 100 101 | 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 | - + | * * @deprecated Use @ref gray instead. * * The RGBA value is (0.5, 0.5, 0.5, 1). * * @return The HTML color `gray` */ |
︙ |
Modified src/runtime/exception.m from [7f6288ce90] to [0a89e50a33].
︙ | |||
35 36 37 38 39 40 41 42 43 44 45 46 47 48 | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | + | #ifdef __SEH__ # include <windows.h> #endif #if defined(__SEH__) # define PERSONALITY gnu_objc_personality # define CXX_PERSONALITY_STR "__gxx_personality_seh0" #elif defined(__USING_SJLJ_EXCEPTIONS__) # define PERSONALITY __gnu_objc_personality_sj0 # define CXX_PERSONALITY_STR "__gxx_personality_sj0" # define _Unwind_RaiseException _Unwind_SjLj_RaiseException # define __builtin_eh_return_data_regno(i) (i) #else # define PERSONALITY __gnu_objc_personality_v0 |
︙ | |||
233 234 235 236 237 238 239 | 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 | + + + + + + + + + + + + + + + + + + + + + + + + + + + - + | _Unwind_SetIP(struct _Unwind_Context *ctx, uintptr_t value) { uintptr_t thumb = _Unwind_GetGR(ctx, 15) & 1; _Unwind_SetGR(ctx, 15, (value | thumb)); } #endif #if defined(OF_WINDOWS) # ifdef __SEH__ static EXCEPTION_DISPOSITION (*cxx_personality)(PEXCEPTION_RECORD, void *, PCONTEXT, PDISPATCHER_CONTEXT); # else static PERSONALITY_FUNC((*cxx_personality)); # endif OF_CONSTRUCTOR() { /* * This only works if the application uses libc++.dll or * libstdc++-6.dll. There is unfortunately no other way, as Windows * does not support proper weak linking. */ HMODULE module; module = GetModuleHandle("libc++"); if (module == NULL) module = GetModuleHandle("libstdc++-6"); if (module != NULL) cxx_personality = (__typeof__(cxx_personality)) GetProcAddress(module, CXX_PERSONALITY_STR); } |
︙ | |||
611 612 613 614 615 616 617 | 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 | - + | struct LSDA LSDA; uintptr_t landingpad = 0; uint8_t found = 0; intptr_t filter = 0; if (foreign) { switch (exClass) { |
︙ | |||
781 782 783 784 785 786 787 | 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 | - - - - - - - - - - - - - - - - - - - - - - + + | objc_uncaught_exception_handler old = uncaughtExceptionHandler; uncaughtExceptionHandler = handler; return old; } #ifdef __SEH__ |