libobjc2 icon indicating copy to clipboard operation
libobjc2 copied to clipboard

Objective-C runtime library intended for use with Clang.

Results 44 libobjc2 issues
Sort by recently updated
recently updated
newest added

With Microsoft announcing [Arm-native developer toolsets](https://docs.microsoft.com/en-us/windows/arm/overview) at Build this year, we were wondering what it would take to get libobjc2 support this. Would this require any new implementations of the...

a standard OpenBSD build with system clang and configured OOB, ``` [ 13%] Linking C executable ExceptionTest ld: error: undefined symbol: _Unwind_Resume >>> referenced by ExceptionTest.m >>> CMakeFiles/ExceptionTest.dir/ExceptionTest.m.o:(finally) >>> referenced...

Hi, I built libobjc2 (master 7dee32a) on Debian 11 aarch64. The AssociatedObject_legacy and AssociatedObject_legacy_optimised tests fail. LSB Release Information ```sh Distributor ID: Debian Description: Debian GNU/Linux 11 (bullseye) Release: 11...

The test failure appears to origin from a Clang bug that is related to the CodeGen passes [PreISelIntrinsicLowering](https://github.com/llvm/llvm-project/blob/38e802a09de645b54c3fc983d692a1436bfc7d13/llvm/lib/CodeGen/PreISelIntrinsicLowering.cpp#L70) and [WinEHPrepare](https://github.com/llvm/llvm-project/blob/88bc24a7e39ef3f85857c3d0857e0e5c93b50bbc/llvm/lib/CodeGen/WinEHPrepare.cpp#L972). In simple cases like this test, the workaround is effective....

Hi, both on Linux/i686 (clang 13) and FreeBSD/amd64 (clang 10) I get two test failures: ``` 71 - PropertyAttributeTest_legacy (Subprocess aborted) 72 - PropertyAttributeTest_legacy_optimised (Subprocess aborted) ```

Throwing/catching an exception in ARC-enabled code on Windows causes an access violation. I’ve reproduced this in various environments/projects and both x64 and x86 with the same results. While debug builds...

This adds support for the `_objc_unexpected_exception` hook on Windows as discussed in #219. GNUstep Base setting `_objc_unexpected_exception` worked fine in my testing and `callUncaughtHandler()` is called with these changes, contrary...

We’d like to use the `_objc_unexpected_exception` hook in order to send unhandled exceptions to our crash reporting including the exception reason for context. While this hook is handled for other...