Changeset 5956892 in git for Singular/gccversion.sh


Ignore:
Timestamp:
May 14, 2003, 7:10:51 PM (21 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '2a584933abf2a2d3082034c7586d38bb6de1a30a')
Children:
5931d3f0c0e866065cec8c219a404f354239ae28
Parents:
c61d19f815d802c1e4402bb4c16f264a2f261d2a
Message:
*hannes: windows port


git-svn-id: file:///usr/local/Singular/svn/trunk@6725 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/gccversion.sh

    rc61d19f r5956892  
    77# CREATED: May 2003
    88#
    9 ###########################################################################
    10 
    11 egrep="egrep"
    12 uname_a=`uname -a`
    13 devnull='/dev/null'
    14 file=file
    15 binary='/bin/ls'
    16 ldd='ldd'
     9#####################################################
    1710
    1811if test x$CC = x
    1912then
    20 CC=cc
     13  CC=cc
    2114fi
    2215cat >tmp.c <<EOF
     
    3326EOF
    3427$CC tmp.c
    35 ./a.out
    36 /bin/rm -f a.out tmp.c
     28if test -e ./a.out; then
     29  ./a.out
     30  /bin/rm -f a.out tmp.c
     31elif test -e a.exe; then
     32  ./a.exe
     33  /bin/rm -f tmp.c a.exe
     34else
     35  echo run_unknown
     36fi
Note: See TracChangeset for help on using the changeset viewer.