From owner-freebsd-questions@FreeBSD.ORG Wed Dec 3 17:08:57 2014 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 67C27502 for ; Wed, 3 Dec 2014 17:08:57 +0000 (UTC) Received: from mail-pd0-f172.google.com (mail-pd0-f172.google.com [209.85.192.172]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 39C50CE4 for ; Wed, 3 Dec 2014 17:08:57 +0000 (UTC) Received: by mail-pd0-f172.google.com with SMTP id y13so15782720pdi.31 for ; Wed, 03 Dec 2014 09:08:56 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=R2EcXbeyPOod1N9W+v1XHqzaIfTUqBg6UqxrqLS1NtY=; b=NgmVKdpVtNkOAwn6zzQ4jNkNnwkHmd5XmxE+29KdGTak5momqguG3rh67nqlegXqz2 v2tsuND9hve/cq87Q/v+U29m6K5eyUERjCHTNLAPt9fhLBGrtEU5nrsVK7XEfDIBKBHk Pye+/+s30/ZAZnnnVgD5FfPibwAgW9hmTldh8TjZOwLDC534c9ihLGKSBGF6sanSkbpw OZPkhHgrMKRdjMbuj0eCI5ZDDywnOKOt/qgDwEu7924uQp1Hx3JLmPmrv3MTkVzZUFl2 PAnWqVoTxcpcj9b+0XMBDJcrnupx05eUbsV0lXdqpLKD0/vsva8jE9bvqnSkd+w3f6xd /f5A== X-Gm-Message-State: ALoCoQnUdo9cuU22leleExNWA3H4LCEEOZz+MWwWofnypDAD+7Zj0qDMrHO38rMN8FeqIaWWXhG0 X-Received: by 10.70.44.197 with SMTP id g5mr10227252pdm.102.1417626536165; Wed, 03 Dec 2014 09:08:56 -0800 (PST) Received: from [127.0.0.1] (76-252-236-89.lightspeed.sndgca.sbcglobal.net. [76.252.236.89]) by mx.google.com with ESMTPSA id fn4sm23749215pab.39.2014.12.03.09.08.54 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 03 Dec 2014 09:08:55 -0800 (PST) Message-ID: <547F43A7.8080805@brianwhalen.net> Date: Wed, 03 Dec 2014 09:08:55 -0800 From: brian User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.3.0 MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Re: How to manually compile on FreeBSD 10.x References: <20141203164555.GA74507@satellite.workgroup.local> In-Reply-To: <20141203164555.GA74507@satellite.workgroup.local> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 141203-0, 12/02/2014), Outbound message X-Antivirus-Status: Clean X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 03 Dec 2014 17:08:57 -0000 On 12/3/2014 8:45 AM, Joshua Lokken wrote: > On Dec/03 02:09PM, Odhiambo Washington wrote: >> Hi guys, >> >> What do I need to install on FreeBSD 10 to enable me compile stuff by hand? >> >> [root@admin ~/Exim/exim-4.85_RC2]# uname -a >> FreeBSD admin.cnet.co.za 10.0-RELEASE-p12 FreeBSD 10.0-RELEASE-p12 #0: Tue >> Nov 4 04:15:03 UTC 2014 >> root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC >> i386 >> >> >> >> [root@admin ~/Exim]# cp Makefile-Exim-4.85x.txt exim-4.85_RC2/L >> LICENCE LICENSE.opendmarc Local/ >> [root@admin ~/Exim]# cp Makefile-Exim-4.85x.txt exim-4.85_RC2/Local/Makefile >> [root@admin ~/Exim]# cd exim-4.85_RC2 >> [root@admin ~/Exim/exim-4.85_RC2]# make >> /bin/sh scripts/source_checks >> >>>>> Creating links to source files... >>>>> Creating lookups/Makefile for building dynamic modules >>>>> New Makefile & lookups/Makefile installed >>>>> Use "make makefile" if you need to force rebuilding of the makefile >> */bin/sh ../scripts/Configure-os.h* >> */bin/sh ../scripts/Configure-os.c* >> *gcc buildconfig.c* >> *make[1]: exec(gcc) failed (No such file or directory)* >> **** Error code 1* >> >> Stop. >> make[1]: stopped in /root/Exim/exim-4.85_RC2/build-FreeBSD-i386 >> *** Error code 1 >> >> Stop. >> make: stopped in /root/Exim/exim-4.85_RC2 > Short answer, > > # ln -s /usr/local/bin/gcc48 /usr/local/bin/gcc > > should get the job done. > > > -- > Joshua also after installing some ports/packages, entering rehash at a prompt, to allow you current session to see these new things is often necessary. Brian