From owner-freebsd-questions@FreeBSD.ORG Mon Mar 31 19: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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C7F7811E for ; Mon, 31 Mar 2014 19:08:57 +0000 (UTC) Received: from mail-ob0-x22a.google.com (mail-ob0-x22a.google.com [IPv6:2607:f8b0:4003:c01::22a]) (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 8D387929 for ; Mon, 31 Mar 2014 19:08:57 +0000 (UTC) Received: by mail-ob0-f170.google.com with SMTP id uz6so9757563obc.1 for ; Mon, 31 Mar 2014 12:08:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=references:mime-version:in-reply-to:content-type :content-transfer-encoding:message-id:cc:from:subject:date:to; bh=ZdTRn8T/IQKcGK8whwGIHE5Laln6oyUQlcBirkJZw74=; b=FfRt7nMpPBeqiC09y6GOURVgIFY8sPE+SbsESWY+5DN7nU8iSZNmQCJDI2ZGUPpc5y GpWaho4ZUGp0i7kE3jl82LZxZ7VMBEXdNY3dH70GDeCx9ChNOLccgsx7ZOV+euNiv+Gh DnuxRMP5NZJLh9gqeZtgcNkn08UjwoJRmDGyFdto3VfE2rJIwAs3FMIwRrTzMu1BKiyU nTC+Sg5OZE7uQvu1ZlKkqf/sk7XYv3dZ1cIrz68NmSxhWy5xVF8HkrRu0yjvrbllATlG S1BXyS7x2slJSjjOdJpeBtjaSeF+KF3/AWJxDz2m5Ly8JEQez+xjgagKkBfnlRynK1YK tUTg== X-Received: by 10.60.136.170 with SMTP id qb10mr24682162oeb.34.1396292936784; Mon, 31 Mar 2014 12:08:56 -0700 (PDT) Received: from [192.168.1.64] (pool-71-170-112-253.dllstx.fios.verizon.net. [71.170.112.253]) by mx.google.com with ESMTPSA id dg2sm25705519obb.17.2014.03.31.12.08.55 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 31 Mar 2014 12:08:55 -0700 (PDT) References: <20140331201111.18f2688b@kalimero.tijl.coosemans.org> Mime-Version: 1.0 (1.0) In-Reply-To: <20140331201111.18f2688b@kalimero.tijl.coosemans.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Message-Id: <2C2F5FA3-D5F3-4223-A163-F689DA5056BF@gmail.com> X-Mailer: iPad Mail (11D167) From: Matthew Pherigo Subject: Re: lang/nimrod issue: missing forward slash Date: Mon, 31 Mar 2014 14:08:55 -0500 To: Tijl Coosemans Cc: "freebsd-questions@freebsd.org" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2014 19:08:57 -0000 > On Mar 31, 2014, at 1:11 PM, Tijl Coosemans wrote: >=20 >> On Mon, 31 Mar 2014 12:15:35 -0500 Matthew Pherigo wrote: >> Hey all, >>=20 >> I'm having a problem with lang/nimrod that's keeping me from doing any >> development at the moment. I think this is an issue created by the >> person who created the port (nimrod works fine on my arch linux VM), >> but I figured I'd check here in case anyone knows a fix. >>=20 >> When I try to compile anything from nimrod, the paths calls the compiler >> with are incorrect. For example, here is the (successful) compilation >> output of a program that doesn't depend on any external Libs (besides >> system.nim): >=20 > Can you make these example program available somewhere so I can try to > reproduce this? The programs themselves don't make any difference. But, here they are. The first one is simply echo("Hello, world!") The program that has external dependencies is a very incomplete calculator p= rogram, as follows: import strutils var a, b, c: float var buf: string echo("Enter your first number! \n> ") buf =3D readLine(stdin) a =3D ParseFloat(buf) --Matt=