blob: 4a0a6cfcd4230d0e29458f85940e477405c6bdeb (
plain) (
tree)
|
|
# include "gcconfig.h"
# include <stdio.h>
int main()
{
# if defined(IRIX_THREADS) || defined(LINUX_THREADS)
printf("-lpthread\n");
# endif
# ifdef SOLARIS_THREADS
printf("-lthread -ldl\n");
# endif
return 0;
}
|