https://github.com/youknowone/xcode-libcxx
The missing libc++ headers in Xcode9 (Sigh).
https://github.com/youknowone/xcode-libcxx
cocoapods libcxx llvm5 pod xcode9
Last synced: about 24 hours ago
JSON representation
The missing libc++ headers in Xcode9 (Sigh).
- Host: GitHub
- URL: https://github.com/youknowone/xcode-libcxx
- Owner: youknowone
- License: other
- Created: 2018-05-25T12:28:41.000Z (almost 8 years ago)
- Default Branch: xcode9
- Last Pushed: 2018-05-25T13:54:10.000Z (almost 8 years ago)
- Last Synced: 2026-01-02T19:16:50.105Z (about 2 months ago)
- Topics: cocoapods, libcxx, llvm5, pod, xcode9
- Language: C++
- Homepage: https://cocoapods.org/pods/libc++
- Size: 28.3 KB
- Stars: 10
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
The missing libc++ headers for Xcode9
=====================================
It seems Apple only update clang compiler itself, but not about the standard
library libc++.
Fortunately, missing headers work well by simplly copying from *REAL* LLVM.
This package includes `any`, `optional` and `variant`.
Installing with Cocoapods
-------------------------
Here is an example of Podfile:
platform :osx, '10.12'
target 'MyApp' do
pod 'libc++'
end
Installing with Makefile
------------------------
Note: This is not recommended. This method will change your Xcode internal
files. Note that this action might break your Xcode or system. Try it by your
own risk.
# Clone this repository.
# Run `make brew` to install llvm@5 via homebrew.
# Run `make install` and follow the instruction.