Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 18 Jul 2002 16:01:19 -0700 (PDT)
From:      Nakata Maho <chat95@mbox.kyoto-inet.or.jp>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/40744: Fix lang/ifc for conflicting with lang/icc
Message-ID:  <200207182301.g6IN1JGO049854@www.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         40744
>Category:       ports
>Synopsis:       Fix lang/ifc for conflicting with lang/icc
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Thu Jul 18 16:10:01 PDT 2002
>Closed-Date:
>Last-Modified:
>Originator:     Nakata Maho
>Release:        4.6-STABLE
>Organization:
Private
>Environment:
FreeBSD debussy.private.org 4.6-STABLE FreeBSD 4.6-STABLE #0: Sun Jul 14 07:04:47 JST 2002     maho@debussy.private.org:/work/cvsup/src/sys/compile/MAHO-DEBUSSY-4.x-STABLE  i386

>Description:
I fixed a problem with port of lang/ifc and lang/icc.
When both ports are installed, ifc does not find ld and fails to compile.
I fixed this problem, just adding path in ifc(shell script).
So, ifc and icc will happly co-exist.

Icc have some problem with linux_devtools-7, now.
To fix this problem some patch will be needed in linuxulator,
and this is not a problem for ifc but at this time, ifc requires
linux_devtools-7... sigh.
Anyway, these problems can be fixed separetely.

I also fixed messages in Makefile and docs/fsupport.
>How-To-Repeat:
just install both icc and ifc. compile some simple program for ifc.
for example,
% cat > test.f
      implicit none
      integer i,j
      
      do i=0, 100
         j=i
        print *,j
      end do
      
      end
% ifc test.f
you get bunch of errors when linking.

>Fix:
+++ ifc/files/patch-aa	Fri Jul 19 07:38:06 2002
@@ -0,0 +1,14 @@
+--- opt/intel/compiler60/ia32/bin/ifc.old	Thu Jul 18 18:52:59 2002
++++ opt/intel/compiler60/ia32/bin/ifc	Thu Jul 18 18:54:03 2002
+@@ -13,9 +13,9 @@
+ 
+ if [ -z PATH ]
+ then
+- PATH=<INSTALLDIR>/compiler60/ia32/bin;
++ PATH=@LINUXBASE@/usr/bin:<INSTALLDIR>/compiler60/ia32/bin;
+ else
+- PATH=<INSTALLDIR>/compiler60/ia32/bin:$PATH;
++ PATH=@LINUXBASE@/usr/bin:<INSTALLDIR>/compiler60/ia32/bin:$PATH;
+ fi
+ export PATH;
+ 

>Release-Note:
>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200207182301.g6IN1JGO049854>