mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 18:24:45 -05:00
69ca9cfd78
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.
9 lines
211 B
Bash
Executable file
9 lines
211 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
SERENITY_ROOT=../../
|
|
|
|
mkdir -p $SERENITY_ROOT/Root/usr/include/sys/
|
|
mkdir -p $SERENITY_ROOT/Root/usr/lib/
|
|
cp ./*.h $SERENITY_ROOT/Root/usr/include/
|
|
cp libpthread.a $SERENITY_ROOT/Root/usr/lib/
|