From owner-freebsd-arm@freebsd.org Mon Oct 12 05:50:34 2015 Return-Path: Delivered-To: freebsd-arm@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BEC0DA0E2A4 for ; Mon, 12 Oct 2015 05:50:34 +0000 (UTC) (envelope-from jau789@gmail.com) Received: from mail-lb0-x229.google.com (mail-lb0-x229.google.com [IPv6:2a00:1450:4010:c04::229]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4F55913A0 for ; Mon, 12 Oct 2015 05:50:34 +0000 (UTC) (envelope-from jau789@gmail.com) Received: by lbwr8 with SMTP id r8so130447980lbw.2 for ; Sun, 11 Oct 2015 22:50:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=to:from:subject:message-id:date:user-agent:mime-version :content-type:content-transfer-encoding; bh=HIsVREWygxe+ue9oJw0S3JKdFl4m3TTKw3seEVmfKKU=; b=L1mrcsAcezIDsav9aefhlvbE7fnWXKvqIUXj2psuiw5KZpQyEMwaEmeta7ZJ+u/RtN A2NWHdHJTBCjjEe0wGSOcgbm1oANQaC2jzuiwcQE5qzei2JaRwllPkZh1vQw7gMgpCew UCVju/gll3vhUECuIarCVeob9464v01YvyZJeibNUCnN6cadp2FU77O9rSiOIH5+nIGI I36Ks/j9dcSC0cQP93X81St4mfXbo2pRiEYa3488r7FoCssW4p3I9dgPTq2QewNVJJfp ZtjkT2YAqX9GEeeI5Knyi6vJsOtKOQiM59upyD1NYVcl+RC91hpf4XB5pabMFxs0AotW gBag== X-Received: by 10.112.126.195 with SMTP id na3mr11395269lbb.50.1444629031591; Sun, 11 Oct 2015 22:50:31 -0700 (PDT) Received: from [192.168.1.131] (xdsl-205-163.nblnetworks.fi. [83.145.205.163]) by smtp.googlemail.com with ESMTPSA id i126sm2596373lfe.45.2015.10.11.22.50.30 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 11 Oct 2015 22:50:31 -0700 (PDT) To: freebsd-arm@FreeBSD.org From: Jukka Ukkonen Subject: machine/acle-compat.h missing X-Enigmail-Draft-Status: N1110 Message-ID: <561B4A25.2030703@gmail.com> Date: Mon, 12 Oct 2015 08:50:29 +0300 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Oct 2015 05:50:34 -0000 After the latest clang update in current cross-compilation for arm has been failing due to "missing" The file is apparently present... src.head/sys/arm/include/acle-compat.h but the compiler fails to find it because for some reason it never gets copied to the path where the compiler expects to find it... /tank/fish/jau/Xcomp/src.head/gnu/lib/libgcc/../../../contrib/gcc/config/arm/libunwind.S:29:10: fatal error: 'machine/acle-compat.h' file not found #include ^ 1 error generated. *** [libunwind.o] Error code 1 Has anyone else noticed this, or is it just me doing something odd? --jau