Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Timed Linux Kernel Compilation
SVT-AV1
7-Zip Compression
Stockfish
FFmpeg
x265
Newest Tests
Rustls
LiteRT
WarpX
Epoch
Valkey
Whisperfile
Recently Updated Tests
Mobile Neural Network
ACES DGEMM
NWChem
SuperTuxKart
ASTC Encoder
SVT-AV1
New & Recently Updated Tests
Recently Updated Suites
Database Test Suite
Machine Learning
Steam
New & Recently Updated Suites
Component Benchmarks
CPUs / Processors
GPUs / Graphics
OpenGL
Disks / Storage
Motherboards
File-Systems
Operating Systems
OpenBenchmarking.org
Corporate / Organization Info
Bug Reports / Feature Requests
Timed LLVM Compilation 1.3.1
pts/build-llvm-1.3.1
- 16 April 2021 -
Fix possible shell script issue based on the interpreter.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.4.0m1--> <PhoronixTestSuite> <Downloads> <Package> <URL>https://github.com/llvm/llvm-project/releases/download/llvmorg-12.0.0/llvm-12.0.0.src.tar.xz</URL> <MD5>ceab21c9081e122a88d82216a80d0dc0</MD5> <SHA256>49dc47c8697a1a0abd4ee51629a696d7bfe803662f2a7252a3b16fc75f3a8b50</SHA256> <FileName>llvm-12.0.0.src.tar.xz</FileName> <FileSize>42876732</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh echo "#!/bin/sh cd build cmake --build . -- -j \$NUM_CPU_CORES 2>&1 echo \$? > ~/test-exit-status" > build-llvm chmod +x build-llvm
interim.sh
#!/bin/sh rm -rf build rm -rf llvm-llvm-12.0.0.src mkdir build tar -xf llvm-12.0.0.src.tar.xz cd build if [ "$1" = "Ninja" ] then cmake -DCMAKE_BUILD_TYPE=Release -G Ninja ../llvm-12.0.0.src else cmake -DCMAKE_BUILD_TYPE=Release -G "Unix Makefiles" ../llvm-12.0.0.src fi
post.sh
#!/bin/sh rm -rf build rm -rf llvm-llvm-12.0.0.src
pre.sh
#!/bin/sh rm -rf build rm -rf llvm-llvm-12.0.0.src mkdir build tar -xf llvm-12.0.0.src.tar.xz cd build if [ "$1" = "Ninja" ] then cmake -DCMAKE_BUILD_TYPE=Release -G Ninja ../llvm-12.0.0.src else cmake -DCMAKE_BUILD_TYPE=Release -G "Unix Makefiles" ../llvm-12.0.0.src fi
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.4.0m1--> <PhoronixTestSuite> <SystemMonitor> <Sensor>sys.time</Sensor> </SystemMonitor> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.4.0m1--> <PhoronixTestSuite> <TestInformation> <Title>Timed LLVM Compilation</Title> <AppVersion>12.0</AppVersion> <Description>This test times how long it takes to build the LLVM compiler.</Description> <ResultScale>Seconds</ResultScale> <Proportion>LIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.3.1</Version> <SupportedPlatforms>Linux, BSD, MacOSX</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>Processor</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities, cmake, python</ExternalDependencies> <ProjectURL>http://www.llvm.org/</ProjectURL> <InternalTags>SMP</InternalTags> <Maintainer>Michael Larabel</Maintainer> <SystemDependencies>ninja</SystemDependencies> </TestProfile> <TestSettings> <Option> <DisplayName>Build System</DisplayName> <Identifier>build</Identifier> <Menu> <Entry> <Name>Ninja</Name> <Value>Ninja</Value> </Entry> <Entry> <Name>Unix Makefiles</Name> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>