From owner-freebsd-questions@FreeBSD.ORG Wed Nov 7 01:57:27 2007 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 759B516A41B for ; Wed, 7 Nov 2007 01:57:27 +0000 (UTC) (envelope-from josh.carroll@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.177]) by mx1.freebsd.org (Postfix) with ESMTP id 2C72613C4B2 for ; Wed, 7 Nov 2007 01:57:25 +0000 (UTC) (envelope-from josh.carroll@gmail.com) Received: by py-out-1112.google.com with SMTP id u77so4291804pyb for ; Tue, 06 Nov 2007 17:57:19 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=Rr8BRQ2xtjneDoFsz3YgkDOFuIRzftyW4i4BH7JL4Uw=; b=RjANYmTe4b3g96UidilGMdsPnDsWe2/QrdE9lfyaCkO6rmvv6vTvzOOoP9liX6YRPBcAQWAJAU6NLkW8Clj9voofpB1ncPrexuYSbkOGNzDf8lz/o4IHmbU81ncl5rTSZ8LZtdybb7eMkPeZykCiov6EOeiA2SRvfhXVHgrDw3k= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=JXoZL4OPh0/bpHlSvq66agVl2RuzSbO1819MxFtOHKQWsMz1BlZUsi1UcnzU9SdwmhFb7plvS2JghY9BC679yxbkquczEFPJwmu84eW736QTw4q1g9Ve4GKB+BpYsm1dB8Vym2KsXjJc0BUlS4QtFRNJq7YGprsW71RIQZLh6NE= Received: by 10.35.98.3 with SMTP id a3mr8221839pym.1194399099689; Tue, 06 Nov 2007 17:31:39 -0800 (PST) Received: by 10.35.110.17 with HTTP; Tue, 6 Nov 2007 17:31:39 -0800 (PST) Message-ID: <8cb6106e0711061731u25002f6cq1e216280d24c7bde@mail.gmail.com> Date: Tue, 6 Nov 2007 17:31:39 -0800 From: "Josh Carroll" To: "Rod Person" In-Reply-To: <20071106193829.531e3067@atomizer.opensourcebeef.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20071106193829.531e3067@atomizer.opensourcebeef.net> Cc: "questions @ freebsd. org" Subject: Re: C compiler cannot create executables X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: josh.carroll@gmail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Nov 2007 01:57:27 -0000 > configure: error: C compiler cannot create executables > > I googled for awhile and found the suggestion to reinstall libtool, but > that also fails with the same error. Can you paste the config.log from the port's work source directory (where configure is located)? Can you try the following and see if it compiles? echo '#include \nint main(void){ printf("hello world!\\n"); return 0;}\n' > t.c ; gcc t.c -o t; ./t; rm t.c You should either see: hello world! Or some compiler errors/warnings/etc. Josh