From owner-freebsd-questions@FreeBSD.ORG Sun Aug 26 00:58:13 2007 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F173716A469 for ; Sun, 26 Aug 2007 00:58:13 +0000 (UTC) (envelope-from nlecic@EUnet.yu) Received: from eunet.yu (smtpclu-1.eunet.yu [194.247.192.226]) by mx1.freebsd.org (Postfix) with ESMTP id 860AA13C428 for ; Sun, 26 Aug 2007 00:58:12 +0000 (UTC) (envelope-from nlecic@EUnet.yu) Received: from nyx.localhost (adsl-221-254.eunet.yu [213.198.221.254]) by eunet.yu (8.13.6/8.13.6) with ESMTP id l7Q0vtpY018991; Sun, 26 Aug 2007 02:57:55 +0200 Message-Id: <200708260057.l7Q0vtpY018991@eunet.yu> Date: Sun, 26 Aug 2007 02:53:15 +0200 From: Nikola Lecic To: dan sikorsky In-Reply-To: <46D09744.5060705@cupid.com> References: <46D09744.5060705@cupid.com> X-Mailer: Claws Mail 2.10.0 (GTK+ 2.10.14; i386-portbld-freebsd6.2) X-Operating-System: FreeBSD 6.2-RELEASE X-Face: pbl6-.[$G'Fi(Ogs2xlXP-V6{3||$Y[LOYs&~GJoikj'cVjcFC[V7du;;0~6nO= [Vi2?uU1Pq~,=Adj@,T:|"`$AF~il]J.Nz#2pU',Y7.{B;m/?{#sO^Dvo$rnmY6] Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-EUNET-AVAS-Milter-Version: 2.0.0 X-AVAS-Virus-Status: clean X-AVAS-Spamd-Symbols: BAYES_40,UNPARSEABLE_RELAY X-AVAS-Spam-Score: -0.2 Cc: freebsd-questions@freebsd.org Subject: Re: nvidia driver blues X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 Aug 2007 00:58:14 -0000 On Sat, 25 Aug 2007 16:55:32 -0400 dan sikorsky wrote: > freebsd 6.2 i386 generic > geforce 7300gt > fresh install.. have updated source, and new ports tree.. > installd x11, and then nvidia drivers no luck, all i get is >=20 > [root@green /usr/ports/x11/nvidia-driver]# make install > =3D=3D=3D> Building for nvidia-driver-100.14.11 > =3D=3D=3D> src (all) > cc -O2 -fno-strict-aliasing -pipe -DNV_VERSION_STRING=3D\"100.14.11\"=20 > -D__KERNEL__ -DNVRM -UDEBUG -U_DEBUG -DNDEBUG -O -fno-common=20 > -msoft-float -fno-unit-at-a-time -minline-all-stringops -D_KERNEL=20 > -DKLD_MODULE -std=3Dc99 -nostdinc -I/src -I. -I@ -I@/contrib/altq=20 > -finline-limit=3D8000 --param inline-unit-growth=3D100 --param=20 > large-function-growth=3D1000 -fno-common -mno-align-long-strings=20 > -mpreferred-stack-boundary=3D2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2=20 > -mno-sse3 -ffreestanding -Wall -Wredundant-decls -Wnested-externs=20 > -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline=20 > -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -c > nvidia_ctl.c cc1: error: unrecognized command line option > "-Wno-pointer-sign" *** Error code 1 ^^^^^^^^^^^^^^^ Dan, "-Wno-pointer-sign" is not the command line option of gcc-3.4.*, but of gcc-4.*. Interestingly, this will probably work (without deleting what is already built): # cd /usr/ports/x11/nvidia-driver/work/NVIDIA-FreeBSD-x86-100.14.11/src # make # cd /usr/ports/x11/nvidia-driver # make install Nikola Le=C4=8Di=C4=87