X-Authentication-Warning: delorie.com: mail set sender to geda-user-bounces using -f X-Recipient: geda-user AT delorie DOT com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=aXmcHj4Niw2XQ+wrsAnciE9F46UTx1sfmyrCEaGGiYg=; b=zSnme1mPUkxbZTyx7UB2AxOg6vFOJQXFUA6KftNHJNY4wPZIJBVl2tng5m+CRuDZmr MSC1FRa58O5SguzRkmNm3FKIZHq/BYktnhZbSC4BrcrP0MuXwHLOXWjghqFqSCT8WJQC 7bnHexUTdjfaUkkQb7TKu8UqeeIyut21dSYQiGhk6GZz15vkJaSMVQSuFH0mOtyToIrB +3weLvO0NA87L2BHq9gegfIAVv1+I5YYhF4mgSHYCtWuRy59Q8H70h2aYlYupFjYmlLw l0qP1oYK0BEOp2zqqpEj/2y8nXcSNNmO/8GEZtJFmQ9gqx1LK18Auqi0Pin9mE72e4b2 /ktw== MIME-Version: 1.0 X-Received: by 10.42.48.134 with SMTP id s6mr1468324icf.23.1411473296536; Tue, 23 Sep 2014 04:54:56 -0700 (PDT) In-Reply-To: <20140923045453.56dc3de2@akka> References: <20140923045453 DOT 56dc3de2 AT akka> Date: Tue, 23 Sep 2014 07:54:56 -0400 Message-ID: Subject: Re: [geda-user] Banging my head against the guile-for-windows wall From: Bob Paddock To: geda-user AT delorie DOT com Content-Type: text/plain; charset=UTF-8 Reply-To: geda-user AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: geda-user AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > In addition I added "-disable-Werror". The original "-Werror" flag made > the build process exit at the config stage. It complained about the > type "long long", which allegedly is not supported in c90. Warnings *are* errors, they should not be ignored. I have found it rare for most GCC based code to compile with anything less than -std=gnu99. Rather than disable Werror, remove the -ansi and possibly the -pedantic, add -std=gnu99.