aburan28 / littleblackbox

Automatically exported from code.google.com/p/littleblackbox
0 stars 0 forks source link

Source won't build in Mac OSX #1

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Run 'make'

What is the expected output? What do you see instead?

Expected output is the littleblackbox binary. Instead, you will receive a "ld: 
library not found for -lcrt0.o" linker error. This is due to littleblackbox 
trying to build itself statically and OSX not having a static libcrt library.

A temporary work around is to remove the '-static' flag from the Makefile.

Original issue reported on code.google.com by heffne...@gmail.com on 21 Dec 2010 at 12:41

GoogleCodeExporter commented 9 years ago
Fixed in version 0.1.1. In OSX run 'make -f Makefile.OSX' to build 
littleblackbox against shared system libraries. 

Original comment by heffne...@gmail.com on 21 Dec 2010 at 6:26