1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Don't build tblgen with -pedantic or -Wno-long-long

llvm-svn: 28638
This commit is contained in:
Reid Spencer 2006-06-01 18:20:23 +00:00
parent a1e510de08
commit 00ee1dc6ea

View File

@ -14,6 +14,10 @@ EXTRA_DIST = FileLexer.cpp.cvs FileLexer.l.cvs \
include $(LEVEL)/Makefile.common
# Disable -pedantic for tblgen
CompileCommonOpts := $(filter-out -pedantic,$(CompileCommonOpts))
CompileCommonOpts := $(filter-out -Wno-long-long,$(CompileCommonOpts))
#
# Make the source file depend on the header file. In this way, dependencies
# (which depend on the source file) won't get generated until bison is done