-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
libvixl: remove per-target compiler flags
We are already including -D__STDC_LIMIT_MACROS in the global CXXFLAGS, so it makes sense to do the same for -D__STDC_CONSTANT_MACROS and -D__STDC_FORMAT_MACROS instead of limiting that to libvixl. The -Wno-sign-compare option can also be removed since GCC 4.6 is not supported anymore. Signed-off-by: Paolo Bonzini <[email protected]>
- Loading branch information
Showing
2 changed files
with
3 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,5 @@ | ||
libvixl_OBJS = vixl/utils.o \ | ||
common-obj-$(CONFIG_ARM_A64_DIS) = vixl/utils.o \ | ||
vixl/compiler-intrinsics.o \ | ||
vixl/a64/instructions-a64.o \ | ||
vixl/a64/decoder-a64.o \ | ||
vixl/a64/disasm-a64.o | ||
|
||
# The -Wno-sign-compare is needed only for gcc 4.6, which complains about | ||
# some signed-unsigned equality comparisons which later gcc versions do not. | ||
$(addprefix $(obj)/,$(libvixl_OBJS)): QEMU_CXXFLAGS := -I$(SRC_PATH)/disas/libvixl $(QEMU_CXXFLAGS) -Wno-sign-compare | ||
# Ensure that C99 macros are defined regardless of the inclusion order of | ||
# headers in vixl. This is required at least on NetBSD. | ||
$(addprefix $(obj)/,$(libvixl_OBJS)): QEMU_CXXFLAGS += -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS | ||
|
||
common-obj-$(CONFIG_ARM_A64_DIS) += $(libvixl_OBJS) |