mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-20 10:42:36 +00:00
For PR845:
Enable the makefile check on the result of find-cycles.pl. LLVM is now cycle free and we intend to keep it that way. This patch will fail the build if cycles are found. llvm-svn: 29517
This commit is contained in:
parent
8e0f0bfd98
commit
d55c555011
@ -39,7 +39,7 @@ $(LibDeps): $(GenLibDeps) $(LibDir) $(wildcard $(LibDir)/*.a $(LibDir)/*.o)
|
||||
# don't have to process them at runtime.
|
||||
$(FinalLibDeps): find-cycles.pl $(LibDeps)
|
||||
$(Echo) "Finding cyclic dependencies between LLVM libraries."
|
||||
-$(Verb) $(PERL) $< < $(LibDeps) > $@
|
||||
$(Verb) $(PERL) $< < $(LibDeps) > $@
|
||||
|
||||
# Rerun our configure substitutions as needed.
|
||||
ConfigInIn = $(PROJ_SRC_DIR)/llvm-config.in.in
|
||||
|
@ -71,9 +71,7 @@ foreach my $cycle (@CYCLES) {
|
||||
}
|
||||
print sort @output;
|
||||
|
||||
### FIXME: reenable this after 1.8.
|
||||
#exit $cycles_found;
|
||||
exit 0;
|
||||
exit $cycles_found;
|
||||
|
||||
#==========================================================================
|
||||
# Depedency Cycle Support
|
||||
|
Loading…
x
Reference in New Issue
Block a user