mirror of https://github.com/acidanthera/audk.git
BaseTools: split long line into multiple short lines.
BZ:https://bugzilla.tianocore.org/show_bug.cgi?id=1764 To be easy to review in future, split the long line into multiple shorter lines. Signed-off-by: Bob Feng <bob.c.feng@intel.com> Cc: Liming Gao <liming.gao@intel.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com>
This commit is contained in:
parent
80d28ddeb2
commit
0d6de095a5
|
@ -68,9 +68,12 @@ BUILD_OPTFLAGS = -O2 $(EXTRA_OPTFLAGS)
|
||||||
|
|
||||||
ifeq ($(DARWIN),Darwin)
|
ifeq ($(DARWIN),Darwin)
|
||||||
# assume clang or clang compatible flags on OS X
|
# assume clang or clang compatible flags on OS X
|
||||||
BUILD_CFLAGS = -MD -fshort-wchar -fno-strict-aliasing -Wall -Werror -Wno-deprecated-declarations -Wno-self-assign -Wno-unused-result -nostdlib -g
|
BUILD_CFLAGS = -MD -fshort-wchar -fno-strict-aliasing -Wall -Werror \
|
||||||
|
-Wno-deprecated-declarations -Wno-self-assign -Wno-unused-result -nostdlib -g
|
||||||
else
|
else
|
||||||
BUILD_CFLAGS = -MD -fshort-wchar -fno-strict-aliasing -Wall -Werror -Wno-deprecated-declarations -Wno-stringop-truncation -Wno-restrict -Wno-unused-result -nostdlib -g
|
BUILD_CFLAGS = -MD -fshort-wchar -fno-strict-aliasing -Wall -Werror \
|
||||||
|
-Wno-deprecated-declarations -Wno-stringop-truncation -Wno-restrict \
|
||||||
|
-Wno-unused-result -nostdlib -g
|
||||||
endif
|
endif
|
||||||
BUILD_LFLAGS =
|
BUILD_LFLAGS =
|
||||||
BUILD_CXXFLAGS = -Wno-unused-result
|
BUILD_CXXFLAGS = -Wno-unused-result
|
||||||
|
|
Loading…
Reference in New Issue