[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Chicken-hackers] [PATCH] add an error for -L and -I in csc
From: |
Kooda |
Subject: |
Re: [Chicken-hackers] [PATCH] add an error for -L and -I in csc |
Date: |
Tue, 1 May 2018 18:08:22 +0200 |
On Sun, 29 Apr 2018 13:16:55 +0200 Kristian Lein-Mathisen
<address@hidden> wrote:
> Hi,
>
> Hopefully the commit message explains it all. I ran into this problem
> when I had an egg file containing this:
>
> (components
> (extension nanomsg
> (source "nanomsg-module.scm")
> (link-options "-L -lnanomsg")))
>
> Which should look like this:
>
> (components
> (extension nanomsg
> (source "nanomsg-module.scm")
> (link-options "-L" "-lnanomsg")))
>
> It was not fun to debug why my egg wouldn't link against nanomsg.so,
> so I though it might be useful to add this check in csc.
> K.
Trivial enough patch, pushed!
I like how it prevents mistakes, which will surely happen when people
start porting eggs. :)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- Re: [Chicken-hackers] [PATCH] add an error for -L and -I in csc,
Kooda <=