[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: LuaLanes on Ubuntu 11.10, kernel 3.0
- From: Taj Khattra <taj.khattra@...>
- Date: Mon, 7 Nov 2011 11:29:08 -0800
On Mon, Nov 7, 2011 at 3:07 AM, Thijs Koerselman
<thijskoerselman@gmail.com> wrote:
> I tried compiling manually and I don't see anything weird but it keeps
> linking to the same libraries. I added -lpthread but that didn't make a
> difference.
> ...
> cc -shared -lpthread lanes.o threading.o tools.o keeper.o -o lua51-lanes.so
try moving -lpthread to the end of the command line
cc -shared lanes.o threading.o tools.o keeper.o -lpthread -o lua51-lanes.so
(re: https://wiki.ubuntu.com/OneiricOcelot/ReleaseNotes#GCC_4.6_Toolchain)
- References:
- LuaLanes on Ubuntu 11.10, kernel 3.0, Thijs Koerselman
- Re: LuaLanes on Ubuntu 11.10, kernel 3.0, Benoit Germain
- Re: LuaLanes on Ubuntu 11.10, kernel 3.0, Hisham
- Re: LuaLanes on Ubuntu 11.10, kernel 3.0, Thijs Koerselman
- Re: LuaLanes on Ubuntu 11.10, kernel 3.0, Benoit Germain
- Re: LuaLanes on Ubuntu 11.10, kernel 3.0, Thijs Koerselman