Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
libc/src/stdlib/CMakeLists.txt | ||
---|---|---|
280 | Why is this necessary? |
libc/src/stdlib/atexit.cpp | ||
---|---|---|
18 | this seems like it won't work if linux/mutex.h isn't included, should this be locked down by host OS? |
Remove an optimization setting which is not required just yet.
libc/src/stdlib/CMakeLists.txt | ||
---|---|---|
280 | This is actually required for a follow up change. Removed it now. | |
libc/src/stdlib/atexit.cpp | ||
18 | At that level, it was already that way. For, the functions __llvm_libc::mtx_lock etc are only available for the linux target. The way to look at this is that, the code in this file does not depend or use an OS specific piece directly - threads/mutex.h is the abstraction layer. |
Why is this necessary?