diff options
author | Chris Lattner <sabre@nondot.org> | 2003-01-17 17:36:47 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-01-17 17:36:47 +0000 |
commit | e281d30ea03d735b1232ba1abe559342c5c3b3cc (patch) | |
tree | 865e07662c3042f11e69357e3c032218a2acb2c5 | |
parent | e899678ffdd669338b6d71f429bb76eec0b85b11 (diff) |
Add new support for a bytecode repository
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5352 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | Makefile.config | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/Makefile.config b/Makefile.config index c16e16774f..390eb8a0d3 100644 --- a/Makefile.config +++ b/Makefile.config @@ -30,8 +30,22 @@ LLVM_OBJ_DIR := /localhome/$(USER) # #LLVMGCCDIR := /home/vadve/lattner/cvs/gcc_install_x86 +# When this setting is set to true, programs in the llvm/test/Programs hierarchy +# are not recompiled from source code. Instead, the bytecode for the file is +# pulled from the BYTECODE_REPOSITORY directory. This can be useful when disk +# space is limited or when you just don't want to spend time running the C +# frontend. +# +#USE_PRECOMPILED_BYTECODE := 1 + +# This path specifies the cannonical location of bytecode files for compiled +# versions of the test/Programs/* programs. This is used as the bytecode source +# when USE_PRECOMPILED_BYTECODE is specified or when source code is not +# available for the program (such as SPEC). +# +BYTECODE_REPOSITORY := /home/vadve/lattner/LLVMPrograms + # Path to location for purify, this is only needed if you build with # ENABLE_PURIFY=1 # PURIFY = /usr/dcs/applications/purify/bin/purify - |