From mboxrd@z Thu Jan 1 00:00:00 1970 From: Toke =?utf-8?Q?H=C3=B8iland-J=C3=B8rgensen?= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=toke.dk; s=20161023; t=1650876691; bh=VYAonUeYQRI/1f04oSktVx/XRPIkwSNhzeG9XMmenq8=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=kZ4RrStLpwNHmoTkHn8O+CoaCn9c2N27LbF7GZREKI8MfVkm0vU5Sd7V9e2XZI16X DWwLr/zv8WpIxtACATucvH6UwhWVEQ3sN9ZIFqGTCc0bneUgnJi4Rvys33A/OIlIuR NdLtLlcdxWbCwqwHNcUfeGCrTokiuPQUUW0NUyOxW2st7nb87bR57FzXfoGNodl70F 658HHHp+qF4bf2K1BmJEuDbyugXI+fln+Sl9rc/cj+nWFT0BNXhrihCqxgKrzFPwh5 ydiHOPpx1rIgAAzchnR7OHxLAsEtDCrP02PGmUwQq/1+wVjy1MVIsNZIzaSItpbTTf Mr3InJ93h/FgA== To: Fabrice Rouillier , Juliusz Chroboczek In-Reply-To: <10CC81BD-7927-4F42-8A8A-263835D762FE@rouillier.fr> References: <878rrzfxc9.wl-jch@irif.fr> <10CC81BD-7927-4F42-8A8A-263835D762FE@rouillier.fr> Date: Mon, 25 Apr 2022 10:51:31 +0200 X-Clacks-Overhead: GNU Terry Pratchett Message-ID: <87mtg9bl64.fsf@toke.dk> MIME-Version: 1.0 Content-Type: text/plain Message-ID-Hash: AE4WKMG6KLANGWA2YOEB2HKUHJGRMF6D X-Message-ID-Hash: AE4WKMG6KLANGWA2YOEB2HKUHJGRMF6D X-MailFrom: toke@toke.dk X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header CC: galene@lists.galene.org X-Mailman-Version: 3.3.5 Precedence: list Subject: [Galene] Re: ANNOUNCE: galene-0.5.2 List-Id: =?utf-8?q?Gal=C3=A8ne_videoconferencing_server_discussion_list?= Archived-At: List-Archive: List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: Fabrice Rouillier writes: > Hi all, > > Having difficulties to compile on a raspberry with the new arm 64 bit > kernel : Linux rpi 5.15.34-v8+ #1545 SMP PREEMPT Fri Apr 22 11:31:40 > BST 2022 aarch64 GNU/Linux > > go version : go1.15.15 linux/arm64 > > Got the following message : > > go: github.com/pion/ice/v2@v2.2.6: parsing /home/pion/ice/go.mod: open > /home/pion/ice/go.mod: no such file or directory Looks like commit 9ab84741d987 ("Update dependencies.") snuck in a hard-coded path to pion (from a development version?). Removing the last line of go.mod (the line that starts with 'replace') and then running 'go mod download github.com/pion/ice/v2' before building fixed it for me... -Toke