repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
1999-12-16 Mark Mitchell <mark@codesourcery.com>
[official-gcc.git]
/
boehm-gc
/
threadlibs.c
blob
df4eb77bb1da64abd258061985371e7ba44227c8
1
# include
"gcconfig.h"
2
# include <stdio.h>
3
4
int
main
()
5
{
6
# if defined(IRIX_THREADS) || defined(LINUX_THREADS)
7
printf
(
"-lpthread
\n
"
);
8
# endif
9
# if defined(HPUX_THREADS)
10
printf
(
"-lpthread -lrt
\n
"
);
11
# endif
12
# ifdef SOLARIS_THREADS
13
printf
(
"-lthread -ldl
\n
"
);
14
# endif
15
return
0
;
16
}
17