summaryrefslogtreecommitdiff
path: root/Servers/AudioServer/Makefile
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-11-13 21:49:24 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-11-13 21:49:24 +0100
commit69ca9cfd78da8e27a958db1656b75bb9d1886e85 (patch)
treec212e54e963f17cc8112cee81d58f3fc409b7127 /Servers/AudioServer/Makefile
parent4fe2ee0221ee8bf457fe2b20b095b1b1af520b86 (diff)
downloadserenity-69ca9cfd78da8e27a958db1656b75bb9d1886e85.zip
LibPthread: Start working on a POSIX threading library
This patch adds pthread_create() and pthread_exit(), which currently simply wrap our existing create_thread() and exit_thread() syscalls. LibThread is also ported to using LibPthread.
Diffstat (limited to 'Servers/AudioServer/Makefile')
-rw-r--r--Servers/AudioServer/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Servers/AudioServer/Makefile b/Servers/AudioServer/Makefile
index 53e6ee811e..5319635f11 100644
--- a/Servers/AudioServer/Makefile
+++ b/Servers/AudioServer/Makefile
@@ -19,7 +19,7 @@ AudioServerEndpoint.h: AudioServer.ipc
@echo "IPC $<"; $(IPCCOMPILER) $< > $@
$(APP): $(OBJS)
- $(LD) -o $(APP) $(LDFLAGS) $(OBJS) -lc -lcore -lipc -lthread
+ $(LD) -o $(APP) $(LDFLAGS) $(OBJS) -lc -lcore -lipc -lthread -lpthread
.cpp.o:
@echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $<