From f88350b2cd66fc278f479ac4af1e6ff4f420507a Mon Sep 17 00:00:00 2001 From: tma Date: Sun, 25 Sep 2005 21:43:48 +0000 Subject: * Removed cons based build system * Removed some id specific shell/perl scripts * Removed some unused asm files * Removed prehistoric RPM build rules git-svn-id: svn://svn.icculus.org/quake3/trunk@104 edf5b092-35ff-0310-97b2-ce42778d08ea --- code/unix/Cons_gcc.pm | 47 ----------------------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 code/unix/Cons_gcc.pm (limited to 'code/unix/Cons_gcc.pm') diff --git a/code/unix/Cons_gcc.pm b/code/unix/Cons_gcc.pm deleted file mode 100644 index 485d1a3..0000000 --- a/code/unix/Cons_gcc.pm +++ /dev/null @@ -1,47 +0,0 @@ -# -# Some utilities to handle gcc compiler setup -# - -package Cons_gcc; - -# pass the compiler name -# returns an array, first element is 2 for 2.x 3 for 3.x, then full version, then machine info -sub get_gcc_version -{ - my @ret; - my ($CC) = @_; - my $version=`$CC --version | head -n 1`; - chop($version); - my $machine=`$CC -dumpmachine`; - chop($machine); - if($version =~ '2\.[0-9]*\.[0-9]*') - { - push @ret, '2'; - } else { - push @ret, '3'; - } - push @ret, $version; - push @ret, $machine; - return @ret; -} - -# http://ccache.samba.org/ -# check ccache existence and path -# returns an array, first element 0 / 1, then path -sub get_ccache -{ - my @ret; - $ccache_path=`which ccache`; - chop($ccache_path); - if(-x $ccache_path) - { - push @ret, '1'; - push @ret, $ccache_path; - return @ret; - } - push @ret, '0'; - return @ret; -} - -# close package -1; -- cgit v1.2.3