We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
configure the test suite (in llvm-tes)t:
./configure --with-spec2000=/dir/to/spec/sources
make in llvm-test/External/SPEC returns the following error when combining the first benchmark (177.mesa):
make[2]: *** No rule to make target Output/accum.rbc', needed by Output/177.mesa.linked.rbc'. Stop.
Output/accum.rbc', needed by
Caused by:
incorrect specificating the source dir for SPEC CPU2000
correct: ./configure --with-spec2000=/dir/to/spec/sources/benchspec
The solution is to modify the configure script in llvm-test, and to test if the CINT2000 and CFP2000 directories are in the specified directory.
The text was updated successfully, but these errors were encountered:
Reid, any thoughts on this bug? Ideally, we'd like to configure script to reject a --with-spec2000 path that doesn't end in "benchspec".
Sorry, something went wrong.
Easy enough.
Fixed. Patches here:
http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20060814/036734.html http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20060814/036735.html
Reid.
Whoops, forgot to resolve it
No branches or pull requests
Extended Description
configure the test suite (in llvm-tes)t:
./configure --with-spec2000=/dir/to/spec/sources
make in llvm-test/External/SPEC returns the following error when combining the
first benchmark (177.mesa):
make[2]: *** No rule to make target
Output/accum.rbc', needed by
Output/177.mesa.linked.rbc'. Stop.Caused by:
incorrect specificating the source dir for SPEC CPU2000
correct: ./configure --with-spec2000=/dir/to/spec/sources/benchspec
The solution is to modify the configure script in llvm-test, and to test if the
CINT2000 and CFP2000 directories are in the specified directory.
The text was updated successfully, but these errors were encountered: