clang and ninja use high-resolutions timestamps, but libtool
doesn't, so the archive will often get an older timestamp than the
last object that was added or updated. To fix this, we add a custom
command to touch archive after it's been built so that ninja won't
rebuild it unnecessarily the next time it's run.
Details
- Reviewers
thakis beanz - Commits
- rZORGee209182d0b5: [cmake] Add custom command to touch archives on Darwin so ninja won't rebuild…
rGee209182d0b5: [cmake] Add custom command to touch archives on Darwin so ninja won't rebuild…
rGbd467cfe4bcd: [cmake] Add custom command to touch archives on Darwin so ninja won't rebuild…
rL361280: [cmake] Add custom command to touch archives on Darwin so ninja won't rebuild…
Diff Detail
- Repository
- rG LLVM Github Monorepo
- Build Status
Buildable 32238 Build 32237: arc lint + arc unit
Event Timeline
Here's what I'm running on my Mac:
local:/Users/dhinton/projects/llvm_project/monorepo/llvm-project $ ninja --version
1.9.0
local:/Users/dhinton/projects/llvm_project/monorepo/llvm-project $ cmake --version
cmake version 3.14.0
btw, here's some samples of what I get when I don't touch them:
local:/Users/dhinton/projects/llvm_project/monorepo/build/Debug $ /usr/local/opt/coreutils/libexec/gnubin/ls --full-time lib/lib*.a -rw-r--r-- 1 dhinton staff 17232 2019-05-20 18:03:27.000000000 -0700 libDynamicLibraryLib.a -rw-r--r-- 1 dhinton staff 2822800 2019-05-20 18:01:34.000000000 -0700 libLLVMBinaryFormat.a -rw-r--r-- 1 dhinton staff 605424256 2019-05-20 18:05:56.000000000 -0700 libLLVMCodeGen.a -rw-r--r-- 1 dhinton staff 115587352 2019-05-20 18:04:26.000000000 -0700 libLLVMCore.a
and what I get when I do:
local:/Users/dhinton/projects/llvm_project/monorepo/build/Debug $ /usr/local/opt/coreutils/libexec/gnubin/ls --full-time lib/lib*.a -rw-r--r-- 1 dhinton staff 17232 2019-05-20 20:57:50.000000000 -0700 lib/libDynamicLibraryLib.a -rw-r--r-- 1 dhinton staff 2822800 2019-05-20 20:57:50.002389000 -0700 lib/libLLVMBinaryFormat.a -rw-r--r-- 1 dhinton staff 605424256 2019-05-20 20:58:06.902285000 -0700 lib/libLLVMCodeGen.a -rw-r--r-- 1 dhinton staff 115587352 2019-05-20 20:58:04.538669000 -0700 lib/libLLVMCore.a
Note that DynamicLibrary doesn't use llvm_add_library...
I have a long story about this issue... Ask me about it sometime :).
We should get @thakis to weigh in here, but Ninja 1.8.2 works on Darwin because it uses the older filesystem APIs and ignores the high-precision timestamps. If we take this patch we should restrict it more. I suspect that libtool on Linux probably behaves correctly. Darwin's binutils fork is literally decades old.
My guess at restricting the patch would be only on Darwin (which is the only place we use libtool), only if the Ninja version > 1.8.2, and Darwin version > 15.6.0 (I think 16.0.0 was when APFS went in which causes this issue).
That sound right. I just did a quick check on a linux box and it didn't have the problem.
- Restrict to Darwin > 15.6.0. Ninja version not available, so will add code to get that and hide all of this under a new variable in the next version of this patch.
It is silly that CMake doesn't expose the ninja version, but it is easy enough to get it. It should be something like:
if(CMAKE_GENERATOR STREQUAL "Ninja") execute_process(COMMAND ${RunCMake_MAKE_PROGRAM} --version OUTPUT_VARIABLE ninja_version OUTPUT_STRIP_TRAILING_WHITESPACE) if(ninja_version VERSION_GREATER 1.8.2) set(ninja_greater_1_8_2 On) endif() endif()
I know this is a bunch of seemingly odd boiler plate, but since we're working around tools bugs in non-LLVM tools which will hopefully someday be fixed, I'd like to restrict this fix to only places where we know the bug is present.
I already added it to llvm/cmake/config-ix.cmake. Please let me know if it looks okay.
One small change needed, otherwise LGTM.
llvm/cmake/config-ix.cmake | ||
---|---|---|
569 | Instead of checking CMAKE_SYSTEM_NAME you should probably just check CMAKE_HOST_APPLE. Not that people really are targeting Darwin from other hosts, but CMAKE_SYSTEM_NAME is actually the target system not the host. |
llvm/trunk/cmake/config-ix.cmake | ||
---|---|---|
558 ↗ | (On Diff #200543) | This line breaks cmake, seems to me must be CMakeNinjaFindMake |
Instead of checking CMAKE_SYSTEM_NAME you should probably just check CMAKE_HOST_APPLE. Not that people really are targeting Darwin from other hosts, but CMAKE_SYSTEM_NAME is actually the target system not the host.