From owner-freebsd-multimedia@FreeBSD.ORG Sun Sep 2 17:56:55 2012 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 97D1F1065673; Sun, 2 Sep 2012 17:56:55 +0000 (UTC) (envelope-from nox@jelal.kn-bremen.de) Received: from smtp.kn-bremen.de (gelbbaer.kn-bremen.de [78.46.108.116]) by mx1.freebsd.org (Postfix) with ESMTP id 529EF8FC14; Sun, 2 Sep 2012 17:56:54 +0000 (UTC) Received: by smtp.kn-bremen.de (Postfix, from userid 10) id 83F3A1E00715; Sun, 2 Sep 2012 19:56:48 +0200 (CEST) Received: from triton8.kn-bremen.de (noident@localhost [127.0.0.1]) by triton8.kn-bremen.de (8.14.4/8.14.4) with ESMTP id q82Hth9I086839; Sun, 2 Sep 2012 19:55:43 +0200 (CEST) (envelope-from nox@triton8.kn-bremen.de) Received: (from nox@localhost) by triton8.kn-bremen.de (8.14.4/8.14.3/Submit) id q82HthgA086838; Sun, 2 Sep 2012 19:55:43 +0200 (CEST) (envelope-from nox) From: Juergen Lock Date: Sun, 2 Sep 2012 19:55:43 +0200 To: emmh Message-ID: <20120902175543.GA86586@triton8.kn-bremen.de> References: <50438F7C.6090402@gulli.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <50438F7C.6090402@gulli.com> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: nox@FreeBSD.org, multimedia@FreeBSD.org Subject: Re: multimedia/vlc X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Sep 2012 17:56:55 -0000 On Sun, Sep 02, 2012 at 06:55:24PM +0200, emmh wrote: > Hi, > > I ran into the proplems with the mmx and sse thing. > > According to http://trac.videolan.org/vlc/ticket/5979 it's a gcc 4.2.1 > problem so I switched to gcc 4.4*, changed the Makefile (commented out > the --disable-mmx...) and it seems to build here (Pentium III > (1002.30-MHz 686-class CPU). > Maybe it is possible to enable these features for gcc 4.4 (or higher?)? > > make is still running (remember the cpu above), I'll report. Heh I just came to the same thought without actually having seen that ticket, I suggested the guy that originally reported the issue to try: USE_GCC?= 4.6+ like also the mplayer port (optionally) uses. And for 9.x and up it may also make sense to try: CC= clang CXX= clang++ like the mplayer port also does. If both of these work I guess we could just (more or less) copy the logic from the mplayer port... Thanx, :) Juergen