Changeset fde597 in git


Ignore:
Timestamp:
Jun 7, 2006, 12:47:25 PM (18 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
32ed4fc37e1059f0d3c41fabbf67bc1a35b74faa
Parents:
54e84caff739c3553691638a0b6127d496e50d1f
Message:
*hannes: sparc64_Linux


git-svn-id: file:///usr/local/Singular/svn/trunk@9183 2c84dea3-7e68-4137-9b89-c4e89433aadc
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • kernel/mod_raw.cc

    r54e84ca rfde597  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: mod_raw.cc,v 1.10 2006-05-09 12:01:11 bricken Exp $ */
     4/* $Id: mod_raw.cc,v 1.11 2006-06-07 10:47:25 Singular Exp $ */
    55/*
    66 * ABSTRACT: machine depend code for dynamic modules
     
    205205#endif
    206206
     207#ifdef sparc64_Linux
     208#define HAVE_ELF_SYSTEM
     209#endif
     210
    207211#if defined(HAVE_ELF_SYSTEM)
    208212#include <dlfcn.h>
  • modules/modgen/makefile.cc

    r54e84ca rfde597  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: makefile.cc,v 1.23 2005-10-03 14:54:03 wienand Exp $ */
     4/* $Id: makefile.cc,v 1.24 2006-06-07 10:47:25 Singular Exp $ */
    55/*
    66* ABSTRACT: lib parsing
     
    161161/*===  Machine depend Makefile creation                                ===*/
    162162/*========================================================================*/
    163 #if defined(ix86_Linux) || defined(ix86_Linux_libc5) || defined(ix86_freebsd)|| defined(x86_64_Linux) || defined(IRIX_6)
     163#if defined(ix86_Linux) || defined(ix86_Linux_libc5) || defined(ix86_freebsd)|| defined(x86_64_Linux) || defined(IRIX_6) || defined(sparc64_Linux)
    164164void build_compile_section(
    165165  FILE *fp,
  • singuname.sh

    r54e84ca rfde597  
    208208        exit 1
    209209    fi
     210# sparc64-Linux ############################################
     211elif (echo $uname_a | $egrep "sparc64" >$devnull)
     212then
     213    prefix=sparc64
     214    if (echo $uname_a | $egrep "Linux" > $devnull)
     215    then
     216        echo ${prefix}-Linux
     217        exit 0
     218    else
     219        echo ${prefix}-Unknown
     220        exit 1
     221    fi
     222
    210223else # Unknown ########################################################
    211224    echo Unknown
Note: See TracChangeset for help on using the changeset viewer.