Displaying 2 results from an estimated 2 matches for "cmake_cxx_clags_debug".
2019 Jan 07
2
Removing LLVM_ALWAYS_INLINE from ADT classes
On Mon, Jan 7, 2019 at 8:39 AM <paul.robinson at sony.com> wrote:
>
>
> > -----Original Message-----
> > From: llvm-dev [mailto:llvm-dev-bounces at lists.llvm.org] On Behalf Of
> Alex
> > Bradbury via llvm-dev
> > Sent: Monday, January 07, 2019 11:33 AM
> > To: Mehdi AMINI
> > Cc: LLVM Dev
> > Subject: Re: [llvm-dev] Removing
2019 Jan 07
2
Removing LLVM_ALWAYS_INLINE from ADT classes
...in the road.
-Chris
> On Jan 7, 2019, at 9:03 AM, Paweł Bylica via llvm-dev <llvm-dev at lists.llvm.org> wrote:
>
> I believe the issues about Debug config and Visual Studio can be solved by using generator expressions
> $<$<CONFIG:Debug>:-O2>
> or alternatively CMAKE_CXX_CLAGS_DEBUG.
>
> At first we don't have to modify the assertions build option so if Debug config builds with assertions tablegen will be build with as well.
>
> Also we can start with keeping LLVM_OPTIMIZE_TABLEGEN off by default.
>
> If that sounds good, I can come with a prototype la...