I'm new to porting Unix apps. I'm trying to get JThreads (www.ooc.com) to build on MacOS PB. Its trying to determine if pthread supports exists using the line
nm `gcc -print-libgcc-file-name` | grep pthread >/dev/null
This resolves to doing an nm on libgcc.a, which I can't find on the system. So a couple questions:
1) are pthreads truly supported on X?
2) is there a standard set of things that need to be done to get a unix program to compile on X?
3) where is libgcc.a?
Thanks for any help,
Brett