From 3281ead31444ccabb5d638effc3946b11d555f2f Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Wed, 8 Dec 2004 16:52:51 +0000 Subject: [PATCH] Move documentation for various configuration options applicabe only to the llvm-test directory into this document from GettingStarted.html. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18637 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/TestingGuide.html | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/docs/TestingGuide.html b/docs/TestingGuide.html index 21e5ba8379b..e57c39e200b 100644 --- a/docs/TestingGuide.html +++ b/docs/TestingGuide.html @@ -455,7 +455,33 @@ designed for internal LLVM research and will not work outside of the LLVM research group. They may still be valuable, however, as a guide to writing your own TEST Makefile for any optimization or analysis passes that you develop with LLVM.

- + +

Note, when configuring the llvm-test module, you might want to +specify the following configuration options:

+
+
--enable-spec2000 +
--enable-spec2000=<directory> +
+ Enable the use of SPEC2000 when testing LLVM. This is disabled by default + (unless configure finds SPEC2000 installed). By specifying + directory, you can tell configure where to find the SPEC2000 + benchmarks. If directory is left unspecified, configure + uses the default value + /home/vadve/shared/benchmarks/speccpu2000/benchspec. +

+

--enable-spec95 +
--enable-spec95=<directory> +
+ Enable the use of SPEC95 when testing LLVM. It is similar to the + --enable-spec2000 option. +

+

--enable-povray +
--enable-povray=<directory> +
+ Enable the use of Povray as an external test. Versions of Povray written + in C should work. This option is similar to the --enable-spec2000 + option. +
-- 2.34.1