mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-30 06:40:53 +00:00
Dummy implementation of the pthread library.
This is needed since libstdc++ uses pthread_once(). llvm-svn: 10360
This commit is contained in:
parent
effecb429c
commit
d073529d65
14
runtime/GCCLibraries/libpthread/Makefile
Normal file
14
runtime/GCCLibraries/libpthread/Makefile
Normal file
@ -0,0 +1,14 @@
|
||||
##===- runtime/GCCLibraries/libpthread/Makefile ------------*- Makefile -*-===##
|
||||
#
|
||||
# The LLVM Compiler Infrastructure
|
||||
#
|
||||
# This file was developed by the LLVM research group and is distributed under
|
||||
# the University of Illinois Open Source License. See LICENSE.TXT for details.
|
||||
#
|
||||
##===----------------------------------------------------------------------===##
|
||||
LEVEL = ../../..
|
||||
BYTECODE_LIBRARY=1
|
||||
DONT_BUILD_RELINKED=1
|
||||
LIBRARYNAME=pthread
|
||||
|
||||
include $(LEVEL)/Makefile.common
|
8
runtime/GCCLibraries/libpthread/pthread.c
Normal file
8
runtime/GCCLibraries/libpthread/pthread.c
Normal file
@ -0,0 +1,8 @@
|
||||
#include <pthread.h>
|
||||
|
||||
int
|
||||
pthread_once (pthread_once_t * control, void (*func) (void))
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user