pkgsrc-Bugs archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
Re: PR/35555 CVS commit: pkgsrc/mk/wrapper
The following reply was made to PR pkg/35555; it has been noted by GNATS.
From: Gilles Dauphin <Gilles.Dauphin%enst.fr@localhost>
To: rillig%NetBSD.org@localhost, gnats-admin%NetBSD.org@localhost,
gnats-bugs%NetBSD.org@localhost
Cc:
Subject: Re: PR/35555 CVS commit: pkgsrc/mk/wrapper
Date: Wed, 7 Feb 2007 12:30:10 +0100 (CET)
> From: Roland Illig <rillig%netbsd.org@localhost>
> To: gnats-bugs%NetBSD.org@localhost
> Cc:
> Subject: PR/35555 CVS commit: pkgsrc/mk/wrapper
> Date: Tue, 6 Feb 2007 20:33:51 +0000 (UTC)
>
> Module Name: pkgsrc
> Committed By: rillig
> Date: Tue Feb 6 20:33:51 UTC 2007
>
> Modified Files:
> pkgsrc/mk/wrapper: bsd.wrapper.mk transform-sunpro-cc wrapper.sh
>
> Log Message:
> Added a new variable wrapper_type to the wrappers, so that the
> transformations can decide whether they happen in a C or a C++ compiler.
> Now the wrappers don't depend on the basename of the executed compiler
> wrapper anymore.
>
Roland , thanks for this fast patch.
but it does not solve fully python24 on amd64.
here is a wished patch for sunpro wrapper, because of Sun compiler bug:
--- mk/wrapper/transform-sunpro-cc.orig Wed Feb 7 10:04:16 2007
+++ mk/wrapper/transform-sunpro-cc Wed Feb 7 12:24:03 2007
@@ -89,7 +89,10 @@
--export-dynamic |\
-shared ) transform_to "-G" ;;
--fPIC |\
+# This day 7 feb 2007 , SUNpro amd64 don't know -xcode option
+# Sun bug, and Sun don't schedule to correct it. See Sunsolve :(
+-xcode=pic* ) transform_to "-KPIC" ;;
+-fPIC ) transform_to "-KPIC" ;;
-fpic ) transform_to "-Kpic" ;;
-KPIC ) transform_pass ;;
Cheers,
Gilles
Home |
Main Index |
Thread Index |
Old Index