Given:
set(T1 a b c) set(T2 b c d) message("T1=${T1}") message("T2=${T2}") list_union(T3 T1 T2) message("T3=${T3}")
cmake emitted:
T1=a;b;c T2=b;c;d T3=b;c
Paths
| Differential D16580
[compiler-rt] list_union() is actually an intersect operation. Rename it. ClosedPublic Authored by dsanders on Jan 26 2016, 6:57 AM.
Details
Summary Given: set(T1 a b c) set(T2 b c d) message("T1=${T1}") message("T2=${T2}") list_union(T3 T1 T2) message("T3=${T3}") cmake emitted: T1=a;b;c T2=b;c;d T3=b;c
Diff Detail Event Timelinebeanz edited edge metadata. Comment ActionsLGTM! Thanks for catching this. This was a short-circuit in my brain. -Chris This revision is now accepted and ready to land.Jan 26 2016, 8:47 AM
Revision Contents
Diff 45989 cmake/Modules/AddCompilerRT.cmake
cmake/Modules/CompilerRTDarwinUtils.cmake
cmake/Modules/CompilerRTUtils.cmake
cmake/config-ix.cmake
|