~ubuntu-branches/ubuntu/maverick/ghdl/maverick

« back to all changes in this revision

Viewing changes to gcc/libgcc/configure

  • Committer: Bazaar Package Importer
  • Author(s): Wesley J. Landaker
  • Date: 2009-04-02 21:23:07 UTC
  • mfrom: (1.1.11 upstream) (3.2.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090402212307-01pkh97q9b3u1vea
Tags: 0.27+svn110+gcc4.3.3+dfsg-1
* Now using gcc-4.3.3
* Updated copyright information
* Added Vcs-Git information
* Updated to policy 3.8.1 

Show diffs side-by-side

added added

removed removed

Lines of Context:
3378
3378
# Collect host-machine-specific information.
3379
3379
. ${srcdir}/config.host
3380
3380
 
 
3381
# Check if Solaris/x86 linker supports ZERO terminator unwind entries.
 
3382
# This is after config.host so we can augment tmake_file.
 
3383
# Link with -nostartfiles -nodefaultlibs since neither are present while
 
3384
# building libgcc.
 
3385
case ${host} in
 
3386
i?86-*-solaris2.1[0-9]*)
 
3387
  cat > conftest.s <<EOF
 
3388
        .section        .eh_frame,"a",@unwind
 
3389
        .zero   4
 
3390
        .section        .jcr,"aw",@progbits
 
3391
        .zero   8
 
3392
EOF
 
3393
  if { ac_try='${CC-cc} -shared -nostartfiles -nodefaultlibs -o conftest.so conftest.s 1>&5'
 
3394
  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
3395
  (eval $ac_try) 2>&5
 
3396
  ac_status=$?
 
3397
  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3398
  (exit $ac_status); }; }; then
 
3399
      # configure expects config files in libgcc/config, so need a relative
 
3400
      # path here.
 
3401
      tmake_file="${tmake_file} ../../gcc/config/i386/t-crtstuff"
 
3402
  fi
 
3403
  ;;
 
3404
esac
 
3405
 
3381
3406
# Check for visibility support.  This is after config.host so that
3382
3407
# we can check for asm_hidden_op.
3383
3408
echo "$as_me:$LINENO: checking for __attribute__((visibility(\"hidden\")))" >&5