Re: [External] : Re: Where is STRIP set for clang?

2022-08-26 Thread Julian Waters
On an even closer inspection, the strip used currently on MacOS is actually XCode strip and not the one that comes with LLVM, do we already have an XCode check that can be piggybacked off at the moment? best regards, Julian On Tue, Aug 2, 2022 at 1:30 PM Julian Waters wrote: > After a quick ref

Re: [External] : Re: Where is STRIP set for clang?

2022-08-01 Thread Julian Waters
After a quick reference through documentation, it appears that LLVM strip uses the exact same flags that gcc's strip uses, at least for the only 2 strip modes we use (--strip-debug, or shortened to just -g, and --strip-unneeded), meaning we can fortunately fold both into the same branch (The curren

Re: [External] : Re: Where is STRIP set for clang?

2022-08-01 Thread erik . joelsson
On 7/27/22 7:46 PM, Julian Waters wrote: What would be a good way to test for the strip executable? The easiest solution off the top of my head is to assume a particular compiler uses a particular strip, but that sounds a little too inflexible. Maybe assuming based on toolchain is good enough,