From owner-freebsd-arm@freebsd.org Sat Apr 9 02:46:04 2016 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 61116B0986E for ; Sat, 9 Apr 2016 02:46:04 +0000 (UTC) (envelope-from embaudarm@gmail.com) Received: from mail-yw0-x241.google.com (mail-yw0-x241.google.com [IPv6:2607:f8b0:4002:c05::241]) (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 24E111132 for ; Sat, 9 Apr 2016 02:46:04 +0000 (UTC) (envelope-from embaudarm@gmail.com) Received: by mail-yw0-x241.google.com with SMTP id o63so17848745ywe.0 for ; Fri, 08 Apr 2016 19:46:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to; bh=JiUVi2qegT5WHse2Ll1PPB18dZGJ5MrnX1srVG+pko0=; b=rjJHxPSgSnpQnNdcSl6KhYh3X8QMigYk41/9x6wdufu3SCIUVOiPg725EieHKszIJB bwm2BxC+S+N7ujjS6maeIv9X6bazWUmdzZcvuWoDwTfcaiOfmRhIc2+CW5K5Jr6/nvKM OmjDKh3vzb7ToSaijfoknzSD8EO08X59gueSFM/9sxeLMrubL5l+tqKFUN39R3ho/570 MACQ0BDCiYY/Ri7nltlg0IouprKoiXILAPRatjnLe9xl+5TptLBo/x7gtkPBiuLpGMJv WMgFnA6Fj1/xeFxEVI3IjKToUagtuu38H8ptwk1GbzuyLR5Vn+emW0JsinjwZqYMJtQv u2mw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:date:message-id:subject:from:to; bh=JiUVi2qegT5WHse2Ll1PPB18dZGJ5MrnX1srVG+pko0=; b=TYVQCjJutr3XsxRTWdQNSYWGUNaBz2JYRKniu/AOUQ8vLYinij5fJzMKWaQugzchoc ySRFYigvdVKlMzNbLMp5uz6VI6VfiPDcOnimzIk3WTCHEfeurUJbju6jzguWo0GD9YfX 9X+Cb7hQoUvGrA6NoXC2JWbLg8LpySp54x7mmatFqzBTLwSGwM/o2zGN0AI3mjSDLfko gVnQWWdn32mo7cyVLJA7a+WYZ3j7xhheeTcco1+lDXdV+YdMyaOrXrg7pr32us6hbdDt rn+ZbZbYgiWq4O+8/DCVTxRvR4MfPY4yS1+DVD+TE5SJ1iQpDEA7zTzsztVF1wTO4rsA Z7cQ== X-Gm-Message-State: AD7BkJLr3xbgXjW6FM15lSui2f47khDxE+sZfVGWD0SGO8jTPyRymmO6GiJE6imCOE2Y6sKssCEy0S23bKK4VA== MIME-Version: 1.0 X-Received: by 10.129.56.196 with SMTP id f187mr5878539ywa.111.1460169963263; Fri, 08 Apr 2016 19:46:03 -0700 (PDT) Received: by 10.83.35.151 with HTTP; Fri, 8 Apr 2016 19:46:03 -0700 (PDT) Date: Fri, 8 Apr 2016 22:46:03 -0400 Message-ID: Subject: Can't installworld for arm -- cc: not found From: Emb Aud To: freebsd-arm@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.21 X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Apr 2016 02:46:04 -0000 Hi Everyone. I would like to use FreeBSD as an embedded OS on the Xilinx Zynq ARM chip. At the moment I am targeting the Zybo board until our custom board is ready. I tried to follow the instructions here to build everything: https://wiki.freebsd.org/FreeBSD/arm/crossbuild buildworld runs just fine, but installworld fails immediately with an error: cc: not found. "/usr/home/~/projects/zynq/src/share/mk/bsd.compiler.mk" line 141: Unable to determine compiler type for cc . Consider setting COMPILER_TYPE. I think this may be due to a lack of a "src.conf" file. Unfortunately I have no idea what to put in that file. Can anyone give me a clue or two about how to get past this problem? My config for the mk utility (see the link above) is: mk_arch="armv6" mk_insdir="$(pwd)/nfsroot" mk_jobs="$(sysctl -n hw.ncpu)" mk_kernel="ZEDBOARD" mk_makeconf="$(pwd)/config/make.conf" mk_mkargs="" mk_nice="nice -10" mk_objdir="$(pwd)/obj" mk_srcconf="$(pwd)/config/src.conf" mk_srcdir="$(pwd)/src" mk_ubldraddr="0x0" Thank you!