Skip to content

Commit

Permalink
For PR722:
Browse files Browse the repository at this point in the history
Change the check for llvm-gcc from using LLVMGCCDIR to LLVMGCC. This checks
for the actual tool rather than the directory in which the tool resides. In
the case of this bug, it is possible that the directory exists but that the
tools in that directory do not. This fix should avoid the makefile from
erroneously proceeding without the actual tools being available.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27361 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
Reid Spencer committed Apr 2, 2006
1 parent 220d2b8 commit 0c5f793
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions runtime/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@
LEVEL = ..
include $(LEVEL)/Makefile.config

ifneq ($(wildcard $(LLVMGCCDIR)),)
ifneq ($(wildcard $(LLVMGCC)),)
PARALLEL_DIRS := GCCLibraries libdummy libprofile libtrace GC
else
PARALLEL_DIRS :=
install all ::
@echo '********' Warning: Your LLVMGCCDIR is set incorrectly. Double-check
@echo '********' Warning: Your LLVMGCCDIR is set incorrectly. Check
@echo '********' Warning: llvm/Makefile.config to make sure it matches
@echo '********' Warning: the directory where the C front-end is installed,
@echo '********' Warning: and re-run configure if it does not.
@echo '********' Warning: the directory where the C front-end is
@echo '********' Warning: installed,and re-run configure if it does not.
endif

# Disable libprofile: a faulty libtool is generated by autoconf which breaks the
Expand Down

0 comments on commit 0c5f793

Please sign in to comment.