Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

ifort 8.0 coredumps

lev_bishop
Beginner
523 Views
The compiler crasheswhen I do the following:
[lsb32@bulldoga latdeb]$ ifort -static -ipo lapack/complex16/zheevx.f liblev.a
IPO: using IR for /tmp/ifort7ARZxy.o
IPO: performing single-file optimizations
ifort: error: /usr/local/cluster/intel/compiler80/fortran/bin/fortcom: core dumped
ifort: error: Fatal error in /usr/local/cluster/intel/compiler80/fortran/bin/fortcom, terminated by unknown signal(139)
ifort: error: problem during multi-file optimization compilation (code 1)
ifort: error: empty multi-file optimizations object list
the file zheevx.f is from lapack http://www.netlib.org/lapack/
and the library liblev.a is a subset of the ATLAS (http://math-atlas.sourceforge.net/ ) libf77blas.a library. Just linking against libf77blas.a causes the crash, but I tried to find the subset of files necessary to do it. Removing any one of the files listed below stops the crash. Since there are 118 files in liblev.a + 1 on the command line, there's too much going on here for me to try to track the problem down further.
[lsb32@bulldoga latdeb]$ ifort -V
Intel Fortran Compiler for 32-bit applications, Version 8.0 Build 20031016Z Package ID: l_fc_p_8.0.034
Copyright (C) 1985-2003 Intel Corporation. All rights reserved.
FOR NON-COMMERCIAL USE ONLY
ifort: Command line error: no files specified; for help type "ifort -help"
I will be happy to provide further information if it helps.
liblev.a contains:
[lsb32@bulldoga latdeb]$ ar t liblev.a
ATL_F77wrap_dcopy.o
ATL_F77wrap_ddot.o
ATL_F77wrap_dgbmv.o
ATL_F77wrap_dgemm.o
ATL_F77wrap_dgemv.o
ATL_F77wrap_dger.o
ATL_F77wrap_dnrm2.o
ATL_F77wrap_drotg.o
ATL_F77wrap_drotmg.o
ATL_F77wrap_drotm.o
ATL_F77wrap_drot.o
ATL_F77wrap_dsbmv.o
ATL_F77wrap_dscal.o
ATL_F77wrap_dsdot.o
ATL_F77wrap_dspmv.o
ATL_F77wrap_dspr2.o
ATL_F77wrap_dspr.o
ATL_F77wrap_dswap.o
ATL_F77wrap_dsymm.o
ATL_F77wrap_dsymv.o
ATL_F77wrap_dsyr2k.o
ATL_F77wrap_dsyr2.o
ATL_F77wrap_dsyrk.o
ATL_F77wrap_dsyr.o
ATL_F77wrap_dtbmv.o
ATL_F77wrap_dtbsv.o
ATL_F77wrap_dtpmv.o
ATL_F77wrap_dtpsv.o
ATL_F77wrap_dtrmm.o
ATL_F77wrap_dtrmv.o
ATL_F77wrap_dtrsm.o
ATL_F77wrap_dtrsv.o
ATL_F77wrap_dzasum.o
ATL_F77wrap_dznrm2.o
ATL_F77wrap_icamax.o
ATL_F77wrap_idamax.o
ATL_F77wrap_isamax.o
ATL_F77wrap_izamax.o
ATL_F77wrap_sasum.o
ATL_F77wrap_saxpy.o
ATL_F77wrap_scasum.o
ATL_F77wrap_scnrm2.o
ATL_F77wrap_scopy.o
ATL_F77wrap_sdot.o
ATL_F77wrap_sdsdot.o
ATL_F77wrap_sgbmv.o
ATL_F77wrap_sgemm.o
ATL_F77wrap_sgemv.o
ATL_F77wrap_sger.o
ATL_F77wrap_snrm2.o
ATL_F77wrap_ssbmv.o
ATL_F77wrap_sscal.o
ATL_F77wrap_sspmv.o
ATL_F77wrap_sspr2.o
ATL_F77wrap_sspr.o
ATL_F77wrap_sswap.o
ATL_F77wrap_ssymm.o
ATL_F77wrap_ssyr2k.o
ATL_F77wrap_ssyr2.o
ATL_F77wrap_ssyrk.o
ATL_F77wrap_ssyr.o
ATL_F77wrap_stbmv.o
ATL_F77wrap_stbsv.o
ATL_F77wrap_stpmv.o
ATL_F77wrap_stpsv.o
ATL_F77wrap_strmm.o
ATL_F77wrap_strmv.o
ATL_F77wrap_strsm.o
ATL_F77wrap_strsv.o
ATL_F77wrap_zaxpy.o
ATL_F77wrap_zcopy.o
ATL_F77wrap_zdotc.o
ATL_F77wrap_zdotu.o
ATL_F77wrap_zdrot.o
ATL_F77wrap_zds cal.o
ATL_F77wrap_zgbmv.o
ATL_F77wrap_zgemm.o
ATL_F77wrap_zgemv.o
ATL_F77wrap_zgerc.o
ATL_F77wrap_zgeru.o
ATL_F77wrap_zhbmv.o
ATL_F77wrap_zhemm.o
ATL_F77wrap_zhemv.o
ATL_F77wrap_zher2k.o
ATL_F77wrap_zher2.o
ATL_F77wrap_zherk.o
ATL_F77wrap_zher.o
ATL_F77wrap_zhpmv.o
ATL_F77wrap_zhpr2.o
ATL_F77wrap_zhpr.o
ATL_F77wrap_zrotg.o
ATL_F77wrap_zscal.o
ATL_F77wrap_zswap.o
ATL_F77wrap_zsymm.o
ATL_F77wrap_zsyr2k.o
ATL_F77wrap_zsyrk.o
ATL_F77wrap_ztbmv.o
ATL_F77wrap_ztbsv.o
ATL_F77wrap_ztpmv.o
ATL_F77wrap_ztpsv.o
ATL_F77wrap_ztrmm.o
ATL_F77wrap_ztrmv.o
ATL_F77wrap_ztrsm.o
ATL_F77wrap_ztrsv.o
zdscal.o
zherk.o
zher.o
zhpmv.o
zhpr2.o
zhpr.o
zrotg.o
zscal.o
zswap.o
zsymm.o
ztpsv.o
ztrmm.o
ztrmv.o
ztrsm.o

0 Kudos
2 Replies
lev_bishop
Beginner
523 Views
I should mention that this crash does not seem to happen with ifc 7.1
L
0 Kudos
Steven_L_Intel1
Employee
523 Views
Sounds like a good candidate for reporting to Intel Support.
0 Kudos
Reply