Thomas Pöchtrager

Results 194 comments of Thomas Pöchtrager

Thank you! I added the missing wrapper/symlink.

Afaik `__apple_build_version__` is only defined by Apple's internal build system. There is no option to expose it otherwise: https://github.com/search?q=repo%3Aswiftlang%2Fllvm-project%20__apple_build_version__&type=code The CMake check should be fixed instead.

I am not a fan of defining `__apple_build_version__` on our own. I'm not exactly sure what it does, nor do I know the specifics of how Apple builds their compiler....

Like stated in the readme, you must install libdispatch: https://github.com/tpoechtrager/cctools-port?tab=readme-ov-file#dependencies

1. Download Xcode as described above --> **_Xcode image needed for SDK creation_** 2. Install: clang, make, libssl-devel, lzma-devel, and libxml2-devel --> **_Dependencies_** 3. Run: ./tools/gen_sdk_package_pbzx.sh .xip --> **_Generates the...

It's hard for me to debug, because FreeBSD - or to be more specific, GhostBSD - runs super slow on my PC in VirtualBox, even though I am using a...

I am unable to reproduce the issue. Recent versions of Clang fail to build compiler-rt due to the outdated nature of the SDK. With clang 14.0.6, I am able to...

Unable to reproduce it with Clang 13.0.1 either. [100%] Built target RTAsan_dynamic.osx [100%] Linking CXX shared library ../darwin/libclang_rt.asan_osx_dynamic.dylib [100%] Built target clang_rt.asan_osx_dynamic [100%] Built target asan [100%] Built target compiler-rt...

The problem here is that `-m32` and `-m64` were originally x86-only options. For GCC they still are. They shouldn't be used with ARM. Adding `-m32` or `-m64` currently changes the...