{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":827890193,"defaultBranch":"main","name":"llvm-project","ownerLogin":"playstation-edd","currentUserCanPush":false,"isFork":true,"isEmpty":false,"createdAt":"2024-07-12T15:47:31.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/175220607?v=4","public":true,"private":false,"isOrgOwned":false},"refInfo":{"name":"","listCacheKey":"v0:1726571384.0","currentOid":""},"activityList":{"items":[{"before":"60c6e2675f0152952a8d425027797d9cf2b19a3d","after":null,"ref":"refs/heads/detangle-ps-sysroot-isysroot","pushedAt":"2024-09-17T11:09:44.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"playstation-edd","name":"Edd Dawson","path":"/playstation-edd","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/175220607?s=80&v=4"}},{"before":"17db3e9860f5997abc6f57283fca7e7edad6846d","after":"60c6e2675f0152952a8d425027797d9cf2b19a3d","ref":"refs/heads/detangle-ps-sysroot-isysroot","pushedAt":"2024-09-09T10:07:32.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"playstation-edd","name":"Edd Dawson","path":"/playstation-edd","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/175220607?s=80&v=4"},"commit":{"message":"Further increase specificity of test descriptions.","shortMessageHtmlLink":"Further increase specificity of test descriptions."}},{"before":"7cf63ff8368d6ba7332f973c93de37d6eea31374","after":"17db3e9860f5997abc6f57283fca7e7edad6846d","ref":"refs/heads/detangle-ps-sysroot-isysroot","pushedAt":"2024-09-09T09:55:42.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"playstation-edd","name":"Edd Dawson","path":"/playstation-edd","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/175220607?s=80&v=4"},"commit":{"message":"Clarify descriptions of behaviour in tests.","shortMessageHtmlLink":"Clarify descriptions of behaviour in tests."}},{"before":"a20158570f15b4200937650b90e07b99e230e3df","after":"7cf63ff8368d6ba7332f973c93de37d6eea31374","ref":"refs/heads/detangle-ps-sysroot-isysroot","pushedAt":"2024-09-06T13:12:39.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"playstation-edd","name":"Edd Dawson","path":"/playstation-edd","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/175220607?s=80&v=4"},"commit":{"message":"Allow -isysroot to override --sysroot for header search\n\nA summary of how search roots are now established:\n\n* The SDK root is sought in the environment, with a fallback to the\n driver's location.\n* The library and header search paths default to being rooted at the SDK\n root, but can be overridden with --sysroot.\n* The header search path root can be further overridden with -isysroot,\n which will also override any header root due to --sysroot.","shortMessageHtmlLink":"Allow -isysroot to override --sysroot for header search"}},{"before":"f64b93746eab3b24a61104376bde05066b8b8c9b","after":"a20158570f15b4200937650b90e07b99e230e3df","ref":"refs/heads/detangle-ps-sysroot-isysroot","pushedAt":"2024-09-05T14:50:57.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"playstation-edd","name":"Edd Dawson","path":"/playstation-edd","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/175220607?s=80&v=4"},"commit":{"message":"[PS4,PS5][Driver] Detangle --sysroot and -isysroot\n\nThe following discrepancies concerning `-isysroot` and `--sysroot`\nmotivated this change:\n\n- The SDK directory can be specified via `-isysroot`, but `--sysroot`\n has no influence over this. Yet, we check for the presence of either\n switch to determine whether we ought to warn about a missing SDK\n *headers*.\n\n- The presence of `-isysroot` is ignored when deciding whether to warn\n about missing SDK *libraries*, depsite it being the only switch\n capable of specifying a non-default SDK location.\n\n- The `--sysroot`s passed to the PlayStation linkers by the driver are\n unrelated to the SDK directory resolved in the PS4PS5Base constructor.\n\n(We also ought to pass a sysroot-relative library search path to the\nlinker via `-L=/target/lib`, but that's for another PR).\n\nSo we're half way between two worlds, currently:\n\nWorld 1: `-isysroot` and `--sysroot=` mean the same thing and each may\n override the SDK directory, from which both header and library\n search paths are derived.\nWorld 2: `-isysroot` influences header search paths and `--sysroot=`\n influences library search paths. Each independently defaults\n to the SDK directory.\n\nThis change commits to world 2, which seems to offer more flexibility\nfor the user and better adheres to the principle of least surprise for\nthose familiar with these options outside of a PlayStation development\nenvironment.\n\nThe test updates to ps{4,5}-sdk-root.c were of the scale of a rewrite so\nI also took the opportunity to clarify the purpose of each part,\neliminate some redundancy and add some missing coverage.\n\nSIE tracker: TOOLCHAIN-16704","shortMessageHtmlLink":"[PS4,PS5][Driver] Detangle --sysroot and -isysroot"}},{"before":null,"after":"f64b93746eab3b24a61104376bde05066b8b8c9b","ref":"refs/heads/detangle-ps-sysroot-isysroot","pushedAt":"2024-09-05T14:46:28.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"playstation-edd","name":"Edd Dawson","path":"/playstation-edd","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/175220607?s=80&v=4"},"commit":{"message":"[PS4,PS5][Driver] Detangle --sysroot and -isysroot\n\nThe following discrepancies concerning `-isysroot` and `--sysroot`\nmotivated this change:\n\n- The SDK directory can be specified via `-isysroot`, but `--sysroot`\n has no influence over this. Yet, we check for the presence of either\n switch to determine whether we ought to warn about a missing SDK\n *headers*.\n\n- The presence of `-isysroot` is ignored when deciding whether to warn\n about missing SDK *libraries*, depsite it being the only switch\n capable of specifying a non-default SDK location.\n\n- The `--sysroot`s passed to the PlayStation linkers by the driver are\n unrelated to the SDK directory resolved in the PS4PS5Base constructor.\n\n(We also ought to pass a sysroot-relative library search path to the\nlinker via `-L=/target/lib`, but that's for another PR).\n\nSo we're half way between two worlds, currently:\n\nWorld 1: `-isysroot` and `--sysroot=` mean the same thing and each may\n override the SDK directory, from which both header and library\n search paths are derived.\nWorld 2: `-isysroot` influences header search paths and `--sysroot=`\n influences library search paths. Each independently defaults\n to the SDK directory.\n\nThis change commits to world 2, which seems to offer more flexibility\nfor the user and better adheres to the principle of least surprise for\nthose familiar with these options outside of a PlayStation development\nenvironment.\n\nThe test updates to ps{4,5}-sdk-root.c were of the scale of a rewrite so\nI also took the opportunity to clarify the purpose of each part,\neliminate some redundancy and add some missing coverage.\n\nSIE tracker: TOOLCHAIN-16704","shortMessageHtmlLink":"[PS4,PS5][Driver] Detangle --sysroot and -isysroot"}},{"before":"0797c184c636889f2897746dc71390ae28005c7c","after":"63da545ccdd41d9eb2392a8d0e848a65eb24f5fa","ref":"refs/heads/main","pushedAt":"2024-09-04T20:48:23.000Z","pushType":"push","commitsCount":224,"pusher":{"login":"playstation-edd","name":"Edd Dawson","path":"/playstation-edd","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/175220607?s=80&v=4"},"commit":{"message":"Revert \"Reland \"AtomicExpand: Allow incrementally legalizing atomicrmw\"\" (#107307)\n\nReverts llvm/llvm-project#106793\r\n\r\n`Next == E` is not enough:\r\nhttps://lab.llvm.org/buildbot/#/builders/169/builds/2834\r\n\r\n`Next` is deleted by `processAtomicInstr`","shortMessageHtmlLink":"Revert \"Reland \"AtomicExpand: Allow incrementally legalizing atomicrm…"}},{"before":"7a8926985b35bffa133c1b9795d9f8dfeb6886fe","after":null,"ref":"refs/heads/check-absent-sdk-nostdlib-nodefaultlibs","pushedAt":"2024-09-04T19:36:29.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"playstation-edd","name":"Edd Dawson","path":"/playstation-edd","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/175220607?s=80&v=4"}},{"before":null,"after":"7a8926985b35bffa133c1b9795d9f8dfeb6886fe","ref":"refs/heads/check-absent-sdk-nostdlib-nodefaultlibs","pushedAt":"2024-09-03T13:51:23.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"playstation-edd","name":"Edd Dawson","path":"/playstation-edd","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/175220607?s=80&v=4"},"commit":{"message":"[PS4,PS5][Driver] Check for absent SDK when -nostdlib/-nodefaultlibs\n\nThe PlayStation drivers emit warnings if it looks like SDK libraries are\nmissing. Until this point, the check was skipped when either -nostdlib\nor -nodefaultlibs was supplied. I believe the idea is that if you aren't\nlinking default libraries, you won't be in need of the SDK.\n\nHowever, in a situation where these switches are supplied, users may\nstill want to pass `-lSomeSDKLib` to the driver/linker with the\nexpectation that libSomeSDKLib.a will be sourced from the SDK. That is,\n-nodefaultlibs and -nostdlib affect the libraries passed to the linker,\nbut not the library search paths.\n\nSo this change removes -nostdlib/-nodefaultlibs from consideration when\ndeciding whether or not to probe for the SDK's existence.\n\nN.B. complete behaviour for -nostdlib and -nodefaultlibs is yet to be\nadded to the PlayStation compiler drivers. Coming soon.\n\nSIE tracker: TOOLCHAIN-16704","shortMessageHtmlLink":"[PS4,PS5][Driver] Check for absent SDK when -nostdlib/-nodefaultlibs"}},{"before":"2644fe4858a36ffa65c36645f362e79889a0ad21","after":"0797c184c636889f2897746dc71390ae28005c7c","ref":"refs/heads/main","pushedAt":"2024-09-03T12:41:08.000Z","pushType":"push","commitsCount":1249,"pusher":{"login":"playstation-edd","name":"Edd Dawson","path":"/playstation-edd","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/175220607?s=80&v=4"},"commit":{"message":"[SCCP] Explicitly mark gep as overdefined if ct eval fails\n\nDon't just leave the result as unknown. I think this currently\nworks out thanks to undef resolution, but the correct thing to\ndo is set it to overdefined explicitly.","shortMessageHtmlLink":"[SCCP] Explicitly mark gep as overdefined if ct eval fails"}},{"before":"497de2a1a1a03ae78a792634853166636bceb63c","after":null,"ref":"refs/heads/consistent-ps5-triple","pushedAt":"2024-08-23T14:58:04.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"playstation-edd","name":"Edd Dawson","path":"/playstation-edd","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/175220607?s=80&v=4"}},{"before":null,"after":"497de2a1a1a03ae78a792634853166636bceb63c","ref":"refs/heads/consistent-ps5-triple","pushedAt":"2024-08-23T10:42:48.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"playstation-edd","name":"Edd Dawson","path":"/playstation-edd","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/175220607?s=80&v=4"},"commit":{"message":"[PS5][clang][test] x86_64-scei-ps5 -> x86_64-sie-ps5 in tests\n\n`x86_64-sie-ps5` is the triple we share with PS5 toolchain users who\nhave reason to care about such things. The vast majority of PS5 checks\nand tests already use this variant. Quashing the handful of stragglers\nwill help prevent future copy+paste of the discouraged variant.","shortMessageHtmlLink":"[PS5][clang][test] x86_64-scei-ps5 -> x86_64-sie-ps5 in tests"}},{"before":"c876761f7ed8de0d30b65b5618bc9dbb8526bb68","after":"2644fe4858a36ffa65c36645f362e79889a0ad21","ref":"refs/heads/main","pushedAt":"2024-08-21T11:51:19.000Z","pushType":"push","commitsCount":1015,"pusher":{"login":"playstation-edd","name":"Edd Dawson","path":"/playstation-edd","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/175220607?s=80&v=4"},"commit":{"message":"[gn build] Port 0cff3e85db00","shortMessageHtmlLink":"[gn build] Port 0cff3e8"}},{"before":"7280be4660df554541f0c700d943016ba2d2430d","after":null,"ref":"refs/heads/ps5-driver-pie","pushedAt":"2024-08-21T09:53:50.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"playstation-edd","name":"Edd Dawson","path":"/playstation-edd","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/175220607?s=80&v=4"}},{"before":"0ca2239d21cb414ce5e6fb9057d442c18f61a32e","after":"7280be4660df554541f0c700d943016ba2d2430d","ref":"refs/heads/ps5-driver-pie","pushedAt":"2024-08-21T08:03:57.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"playstation-edd","name":"Edd Dawson","path":"/playstation-edd","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/175220607?s=80&v=4"},"commit":{"message":"Add check for \"--shared\", along with lack of \"-pie\".","shortMessageHtmlLink":"Add check for \"--shared\", along with lack of \"-pie\"."}},{"before":null,"after":"0ca2239d21cb414ce5e6fb9057d442c18f61a32e","ref":"refs/heads/ps5-driver-pie","pushedAt":"2024-08-12T13:45:57.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"playstation-edd","name":"Edd Dawson","path":"/playstation-edd","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/175220607?s=80&v=4"},"commit":{"message":"[PS5][Driver] Link main components with -pie by default\n\nThe PS5 linker currently forces `-pie` for typical link jobs. Have the\ndriver pass `pie` under the same conditions. With this change we can\nremove our private linker patch and also allow `-no-pie` to have an\neffect.\n\nSIE tracker: TOOLCHAIN-16704","shortMessageHtmlLink":"[PS5][Driver] Link main components with -pie by default"}},{"before":"6f8ef5ad2f35321257adbe353f86027bf5209023","after":"c876761f7ed8de0d30b65b5618bc9dbb8526bb68","ref":"refs/heads/main","pushedAt":"2024-08-12T13:08:28.000Z","pushType":"push","commitsCount":774,"pusher":{"login":"playstation-edd","name":"Edd Dawson","path":"/playstation-edd","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/175220607?s=80&v=4"},"commit":{"message":"[IndVars] Add test for #102597 (NFC)","shortMessageHtmlLink":"[IndVars] Add test for llvm#102597 (NFC)"}},{"before":"9cc12df9b709a7393e5355ec40f97d3d42b33768","after":null,"ref":"refs/heads/ps-driver-allow-static","pushedAt":"2024-08-12T13:00:56.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"playstation-edd","name":"Edd Dawson","path":"/playstation-edd","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/175220607?s=80&v=4"}},{"before":"fa9222aa2388bc3040114b0106096499408267a2","after":"9cc12df9b709a7393e5355ec40f97d3d42b33768","ref":"refs/heads/ps-driver-allow-static","pushedAt":"2024-08-06T08:34:53.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"playstation-edd","name":"Edd Dawson","path":"/playstation-edd","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/175220607?s=80&v=4"},"commit":{"message":"--static -> -static","shortMessageHtmlLink":"--static -> -static"}},{"before":"aa97906cdf1ac08e0b5d607914c28dcb2bbc2545","after":"fa9222aa2388bc3040114b0106096499408267a2","ref":"refs/heads/ps-driver-allow-static","pushedAt":"2024-08-06T08:16:06.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"playstation-edd","name":"Edd Dawson","path":"/playstation-edd","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/175220607?s=80&v=4"},"commit":{"message":"Remove superfluous linebreak","shortMessageHtmlLink":"Remove superfluous linebreak"}},{"before":null,"after":"aa97906cdf1ac08e0b5d607914c28dcb2bbc2545","ref":"refs/heads/ps-driver-allow-static","pushedAt":"2024-08-05T17:22:05.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"playstation-edd","name":"Edd Dawson","path":"/playstation-edd","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/175220607?s=80&v=4"},"commit":{"message":"[PS4/PS5][Driver] Allow -static in PlayStation drivers\n\nOn PlayStation, allow users to supply -static to the linker, via the\ndriver.\n\nAn initial step. Later changes will have the PS5 driver supply\nadditional options to the linker, if and when -static is passed.\n\nSIE tracker: TOOLCHAIN-16704","shortMessageHtmlLink":"[PS4/PS5][Driver] Allow -static in PlayStation drivers"}},{"before":"39e192b379362e9e645427631c35450d55ed517d","after":"6f8ef5ad2f35321257adbe353f86027bf5209023","ref":"refs/heads/main","pushedAt":"2024-08-05T11:07:18.000Z","pushType":"push","commitsCount":497,"pusher":{"login":"playstation-edd","name":"Edd Dawson","path":"/playstation-edd","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/175220607?s=80&v=4"},"commit":{"message":"[flang] Construct SmallVector with ArrayRef (NFC) (#101901)","shortMessageHtmlLink":"[flang] Construct SmallVector with ArrayRef (NFC) (llvm#101901)"}},{"before":"bf42a7860a208439a0a29f5dcc7a33949c484efb","after":"39e192b379362e9e645427631c35450d55ed517d","ref":"refs/heads/main","pushedAt":"2024-07-30T23:11:29.000Z","pushType":"push","commitsCount":52,"pusher":{"login":"playstation-edd","name":"Edd Dawson","path":"/playstation-edd","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/175220607?s=80&v=4"},"commit":{"message":"[Support] Silence warnings when retrieving exported functions (#97905)\n\nSince functions exported from DLLs are type-erased, before this patch I\r\nwas seeing the new Clang 19 warning `-Wcast-function-type-mismatch`.\r\n\r\nThis happens when building LLVM on Windows.\r\n\r\nFollowing discussion in\r\nhttps://github.com/llvm/llvm-project/commit/593f708118aef792f434185547f74fedeaf51dd4#commitcomment-143905744","shortMessageHtmlLink":"[Support] Silence warnings when retrieving exported functions (llvm#9…"}},{"before":"4ee96bd211de1c1499c1860988af1f8369e20d93","after":null,"ref":"refs/heads/omit-empty-lto-debug-options","pushedAt":"2024-07-30T22:54:29.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"playstation-edd","name":"Edd Dawson","path":"/playstation-edd","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/175220607?s=80&v=4"}},{"before":null,"after":"4ee96bd211de1c1499c1860988af1f8369e20d93","ref":"refs/heads/omit-empty-lto-debug-options","pushedAt":"2024-07-30T16:31:44.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"playstation-edd","name":"Edd Dawson","path":"/playstation-edd","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/175220607?s=80&v=4"},"commit":{"message":"[PS4][Driver] Only pass -lto-debug-options to linker when necessary\n\nThe PS4 linker doesn't accept an empty LTO options string. Passing\nnothing is also consistent with other drivers.\n\nSIE tracker: TOOLCHAIN-16575","shortMessageHtmlLink":"[PS4][Driver] Only pass -lto-debug-options to linker when necessary"}},{"before":"16e9bb9cd7f50ae2ec7f29a80bc3b95f528bfdbf","after":"bf42a7860a208439a0a29f5dcc7a33949c484efb","ref":"refs/heads/main","pushedAt":"2024-07-30T15:17:59.000Z","pushType":"push","commitsCount":39,"pusher":{"login":"playstation-edd","name":"Edd Dawson","path":"/playstation-edd","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/175220607?s=80&v=4"},"commit":{"message":"[libc] Implement placeholder memory functions on the GPU (#101082)\n\nSummary:\r\nThese functions are needed for `libc++` to link successfully. We can't\r\nimplement them well currently, so simply provide some stand-in\r\nimplementations. `realloc` will currently copy garbage and potentially\r\nfault and `aligned_alloc` will work unless your alignment is more than\r\n4K alignment. However, these should work in practice to get tests\r\nrunning. I will write a real allocator soon™.","shortMessageHtmlLink":"[libc] Implement placeholder memory functions on the GPU (llvm#101082)"}},{"before":"0a1ce1ae62f58eacf98b89487065fedccbc7cd68","after":"16e9bb9cd7f50ae2ec7f29a80bc3b95f528bfdbf","ref":"refs/heads/main","pushedAt":"2024-07-30T08:18:09.000Z","pushType":"push","commitsCount":83,"pusher":{"login":"playstation-edd","name":"Edd Dawson","path":"/playstation-edd","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/175220607?s=80&v=4"},"commit":{"message":"[sanitizer_common] Make sanitizer_linux.cpp kernel_stat* handling Linux-specific\n\nfcd6bd5587cc376cd8f43b60d1c7d61fdfe0f535 broke the Solaris/sparcv9 buildbot:\n```\ncompiler-rt/lib/sanitizer_common/sanitizer_linux.cpp:39:14: fatal error: 'asm/unistd.h' file not found\n 39 | # include \n | ^~~~~~~~~~~~~~\n```\nThat section should have been Linux-specific in the first place, which is\nwhat this patch does.\n\nTested on sparcv9-sun-solaris2.11.","shortMessageHtmlLink":"[sanitizer_common] Make sanitizer_linux.cpp kernel_stat* handling Lin…"}},{"before":"a47358588bd9c16b1a47bc2091e58e1f627dfb29","after":null,"ref":"refs/heads/allow-exe-suffix-unified-lto-test","pushedAt":"2024-07-30T08:03:27.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"playstation-edd","name":"Edd Dawson","path":"/playstation-edd","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/175220607?s=80&v=4"}},{"before":null,"after":"a47358588bd9c16b1a47bc2091e58e1f627dfb29","ref":"refs/heads/allow-exe-suffix-unified-lto-test","pushedAt":"2024-07-29T15:57:24.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"playstation-edd","name":"Edd Dawson","path":"/playstation-edd","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/175220607?s=80&v=4"},"commit":{"message":"[PS4/PS5][Driver] Allow unified-lto.c test to find .*ld.exe\n\nIt's common in SIE development environments to have the PlayStation\nlinkers on the %PATH%. In such cases, the driver will resolve the linker\nname to an existing executable, replete with \".exe\" extension. Update\nrecent modifications to clang/test/Driver/unified-lto.c to allow for\nthis.","shortMessageHtmlLink":"[PS4/PS5][Driver] Allow unified-lto.c test to find .*ld.exe"}},{"before":"5430f73b501f9fc0a38c3768592f5f31bcbdf2f0","after":"0a1ce1ae62f58eacf98b89487065fedccbc7cd68","ref":"refs/heads/main","pushedAt":"2024-07-29T15:33:34.000Z","pushType":"push","commitsCount":34,"pusher":{"login":"playstation-edd","name":"Edd Dawson","path":"/playstation-edd","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/175220607?s=80&v=4"},"commit":{"message":"[mlir][doc] Fix docs for `PtrDialect` using the `-gen-dialect-doc`(NFC) (#101013)","shortMessageHtmlLink":"[mlir][doc] Fix docs for PtrDialect using the -gen-dialect-doc(NF…"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"Y3Vyc29yOnYyOpK7MjAyNC0wOS0xN1QxMTowOTo0NC4wMDAwMDBazwAAAAS4bNBo","startCursor":"Y3Vyc29yOnYyOpK7MjAyNC0wOS0xN1QxMTowOTo0NC4wMDAwMDBazwAAAAS4bNBo","endCursor":"Y3Vyc29yOnYyOpK7MjAyNC0wNy0yOVQxNTozMzozNC4wMDAwMDBazwAAAASMEKi7"}},"title":"Activity · playstation-edd/llvm-project"}