From owner-freebsd-questions@FreeBSD.ORG Wed Feb 29 13:48:46 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 545F8106566B for ; Wed, 29 Feb 2012 13:48:46 +0000 (UTC) (envelope-from wodfer@gmail.com) Received: from mail-lpp01m010-f54.google.com (mail-lpp01m010-f54.google.com [209.85.215.54]) by mx1.freebsd.org (Postfix) with ESMTP id C6E798FC0C for ; Wed, 29 Feb 2012 13:48:44 +0000 (UTC) Received: by lagv3 with SMTP id v3so662829lag.13 for ; Wed, 29 Feb 2012 05:48:44 -0800 (PST) Received-SPF: pass (google.com: domain of wodfer@gmail.com designates 10.112.45.74 as permitted sender) client-ip=10.112.45.74; Authentication-Results: mr.google.com; spf=pass (google.com: domain of wodfer@gmail.com designates 10.112.45.74 as permitted sender) smtp.mail=wodfer@gmail.com; dkim=pass header.i=wodfer@gmail.com Received: from mr.google.com ([10.112.45.74]) by 10.112.45.74 with SMTP id k10mr123029lbm.107.1330523323992 (num_hops = 1); Wed, 29 Feb 2012 05:48:43 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; bh=KwT/gOAapUqCq4N5ktaDO60kGUvCepOWfTwtW+uP6QE=; b=FXDToTKKQf7l9lRAgeFTIzFm3R2VxvJnf42HYGUlVV+oTVZbuKoFudyQYQwDLm26m8 kd+1H1bk9S7Zf8xjVDqITvXAbYZjs/7lhcm2VSro+2+URdiVr0b6ABZ6AE4cKAhIOanz MCTwg0Lrn2XfwhVZywriIz8GZOhrSk88uEeVo= MIME-Version: 1.0 Received: by 10.112.45.74 with SMTP id k10mr101426lbm.107.1330523323923; Wed, 29 Feb 2012 05:48:43 -0800 (PST) Received: by 10.152.112.34 with HTTP; Wed, 29 Feb 2012 05:48:43 -0800 (PST) Date: Wed, 29 Feb 2012 14:48:43 +0100 Message-ID: From: Andy Wodfer To: freebsd-questions Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Help compiling ffmpeg from source 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: Wed, 29 Feb 2012 13:48:46 -0000 I'm on FreeBSD 8.2 STABLE (AMD64). I need to install the latest ffmpeg 0.10, but it fails when compiling. I must admit I very rarely do it this way. Normally all software is installed from ports, but I couldn't find this version of ffmpeg there. Heres what I do: ./configure gmake and the problem looks like this: [snip] /var/tmp//ccKzWhb0.s:26921: Error: `ff_h264_norm_shift(%r10d)' is not a valid 64 bit base/index expression /var/tmp//ccKzWhb0.s:26923: Error: `ff_h264_mlps_state+128(%edi)' is not a valid 64 bit base/index expression /var/tmp//ccKzWhb0.s:26931: Error: `-1(%r9d)' is not a valid 64 bit base/index expression /var/tmp//ccKzWhb0.s:26936: Error: `ff_h264_norm_shift(%ecx)' is not a valid 64 bit base/index expression /var/tmp//ccKzWhb0.s:27045: Error: `ff_h264_lps_range(%r9d,%r12d,2)' is not a valid 64 bit base/index expression /var/tmp//ccKzWhb0.s:27055: Error: `ff_h264_norm_shift(%r12d)' is not a valid 64 bit base/index expression /var/tmp//ccKzWhb0.s:27057: Error: `ff_h264_mlps_state+128(%r9d)' is not a valid 64 bit base/index expression /var/tmp//ccKzWhb0.s:27065: Error: `-1(%r11d)' is not a valid 64 bit base/index expression /var/tmp//ccKzWhb0.s:27070: Error: `ff_h264_norm_shift(%ecx)' is not a valid 64 bit base/index expression gmake: *** [libavcodec/h264_cabac.o] Error 1 Any idea what I can do to fix this? Thanks! Andy