[Compbench-devel] CompBenchmarks++/CBM-PI/t/lib compilers.pl, 1.6, 1.7
Brought to you by:
xfred
From: Frederic T. <xf...@us...> - 2007-04-18 16:28:31
|
Update of /cvsroot/compbench/CompBenchmarks++/CBM-PI/t/lib In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv32757 Modified Files: compilers.pl Log Message: Interface parameters added. Index: compilers.pl =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/CBM-PI/t/lib/compilers.pl,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** compilers.pl 17 Apr 2007 20:07:25 -0000 1.6 --- compilers.pl 18 Apr 2007 16:28:24 -0000 1.7 *************** *** 48,51 **** --- 48,52 ---- 'compiler-fake-gcc-3.1.1' => 'gcc-3.1.x', 'compiler-fake-g++-3.1.1' => 'g++-3.1.x', + 'compiler-fake-tcc-0.9.23' => 'tcc-0.9.x', ); *************** *** 57,63 **** 'compiler-fake-g++-3.0.4', 'compiler-fake-gcc-3.1.1', ! 'compiler-fake-g++-3.1.1' ); # Following hashs declare known options (in regard of CompBenchmarks XML # knowledge base). [TASKOPTS] --- 58,100 ---- 'compiler-fake-g++-3.0.4', 'compiler-fake-gcc-3.1.1', ! 'compiler-fake-g++-3.1.1', ! 'compiler-fake-tcc-0.9.23' ); + our %COMPILER_FAKE_INTERFACE_PARAMETERS = + ('compiler-fake-g++-4.1.1-13' => + {'language' => 'C++', + 'compiler' => 'g++', + 'compilerName' => 'g++ (GCC) 4.1.2 20060901 (prerelease) (Debian 4.1.1-13)', + 'compilerVersion' => '4.1.2 20060901 (prerelease)', + 'vanilla' => '4.1.2', + 'compatibility' => '3.1.x' + }, + 'compiler-fake-gcc-3.2.3-20-rh' => + {'language' => 'C', + 'compiler' => 'gcc', + 'compilerName' => 'gcc (GCC) 3.2.3 20030502 (Red Hat Linux 3.2.3-20)', + 'compilerVersion' => '3.2.3', + 'vanilla' => '3.2.3', + 'compatibility' => '3.1.x' + }, + 'compiler-fake-gcc-4.1.1-13' => + {'language' => 'C', + 'compiler' => 'gcc', + 'compilerName' => 'gcc (GCC) 4.1.2 20060901 (prerelease) (Debian 4.1.1-13)', + 'compilerVersion' => '4.1.2 20060901 (prerelease)', + 'vanilla' => '4.1.2', + 'compatibility' => '3.1.x' + }, + 'compiler-fake-tcc-0.9.23', + {'language' => 'C', + 'compiler' => 'tcc', + 'compilerName' => 'Tiny C Compiler tcc version 0.9.23', + 'compilerVersion' => 'tcc version 0.9.23', + 'vanilla' => '0.9.23', + 'compatibility' => '0.9.x' + } + ); + # Following hashs declare known options (in regard of CompBenchmarks XML # knowledge base). [TASKOPTS] |