diff --git a/Makefile.rules b/Makefile.rules index 228fd733e7e..c12ba1d8f78 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -190,19 +190,6 @@ uninstall:: uninstall-local install-local:: all-local install-bytecode:: install-bytecode-local -############################################################################### -# LLVMC: Provide rules for compiling llvmc-based driver -############################################################################### - -ifdef LLVMC_BASED_DRIVER - -TOOLNAME = $(LLVMC_BASED_DRIVER) - -LLVMLIBS = CompilerDriver.a -LINK_COMPONENTS = support - -endif # LLVMC_BASED_DRIVER - ############################################################################### # VARIABLES: Set up various variables based on configuration data ############################################################################### @@ -1686,10 +1673,6 @@ ifdef TARGET TABLEGEN_INC_FILES_COMMON = 1 endif -ifdef LLVMC_BASED_DRIVER -TABLEGEN_INC_FILES_COMMON = 1 -endif - ifdef TABLEGEN_INC_FILES_COMMON INCFiles := $(filter %.inc,$(BUILT_SOURCES)) @@ -1805,27 +1788,6 @@ clean-local:: endif # TARGET -ifdef LLVMC_BASED_DRIVER - -TDSrc := $(sort $(strip $(wildcard $(PROJ_SRC_DIR)/*.td)) \ - $(strip $(wildcard $(PROJ_OBJ_DIR)/*.td))) - -TDCommon := $(strip $(wildcard \ - $(LLVM_SRC_ROOT)/include/llvm/CompilerDriver/*.td)) - -TDFiles := $(TDSrc) $(TDCommon) - -$(INCTMPFiles) : $(TBLGEN) $(TDFiles) - -$(ObjDir)/%.inc.tmp: %.td $(ObjDir)/.dir - $(Echo) "Building LLVMC compilation graph description with tblgen" - $(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $< - -clean-local:: - -$(Verb) $(RM) -f $(INCFiles) - -endif # LLVMC_BASED_DRIVER - ############################################################################### # OTHER RULES: Other rules needed ############################################################################### diff --git a/docs/FAQ.html b/docs/FAQ.html index 9e3ea7f2a8d..7294cdd1a42 100644 --- a/docs/FAQ.html +++ b/docs/FAQ.html @@ -72,9 +72,6 @@
llvmc is experimental and isn't really supported. We suggest - using llvm-gcc instead.
-When I compile LLVM-GCC with srcdir == objdir, it fails. Why?
diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html index 0695d7d933a..d7fcc6a1fed 100644 --- a/docs/GettingStarted.html +++ b/docs/GettingStarted.html @@ -1595,16 +1595,6 @@ information is in the Command Guide. href="HowToSubmitABug.html">HowToSubmitABug.html for more information on using bugpoint. -