Displaying 3 results from an estimated 3 matches for "assertmod".
Did you mean:
assertmode
2007 Jun 25
2
[LLVMdev] BuildMode
...tion correspondingly).
Is this what was intended and the above code is a bug or did I misinterpret
something?
Now in the llvm Makefile:
# NOTE: This needs to remain as the last target definition in this file so
# that it gets executed last.
all::
$(Echo) '*****' Completed $(BuildMode)$(AssertMode) Build
ifeq ($(BuildMode),Debug)
$(Echo) '*****' Note: Debug build can be 10 times slower than an
$(Echo) '*****' optimized build. Use 'make ENABLE_OPTIMIZED=1' to
$(Echo) '*****' make an optimized build.
endif
This is the only place I can find AssertMode mentio...
2007 Jun 26
0
[LLVMdev] BuildMode
...you made or
you'll confuse a lot of us. Its already confusing enough.
>
> Now in the llvm Makefile:
>
> # NOTE: This needs to remain as the last target definition in this file so
> # that it gets executed last.
> all::
> $(Echo) '*****' Completed $(BuildMode)$(AssertMode) Build
> ifeq ($(BuildMode),Debug)
> $(Echo) '*****' Note: Debug build can be 10 times slower than an
> $(Echo) '*****' optimized build. Use 'make ENABLE_OPTIMIZED=1' to
> $(Echo) '*****' make an optimized build.
> endif
>
> This is the only...
2007 Jun 26
1
[LLVMdev] BuildMode
...would appreciate it if you would not commit the changes you made or
> you'll confuse a lot of us. Its already confusing enough.
Nope, I won't. That's why I asked. I'll change it back in my copy.
> Yeah, this appears to be bug in this rule. It shouldn't be using
> $(AssertMode) there, just $(BuildMode).
All right. I'll clean that up.
> Furthermore, the ifeq directive
> needs to find "Debug" anywhere in $(BuildMode) not just if its equal to
> "Build". That is, you want the warnings to occur when BuildMOde is
> "Debug" or...