Remove pthread library from $(LIBS)

It was moved into the libc.

Fixes #126.
This commit is contained in:
Josef Söntgen
2018-11-28 11:13:57 +01:00
committed by Christian Helmuth
parent 474a49a32c
commit bb328c629c
5 changed files with 5 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
TARGET = audio_player TARGET = audio_player
SRC_CC = main.cc SRC_CC = main.cc
INC_DIR += $(PRG_DIR) INC_DIR += $(PRG_DIR)
LIBS := base libc avcodec avformat avutil avresample pthread LIBS := base libc avcodec avformat avutil avresample
CC_CXX_WARN_STRICT = CC_CXX_WARN_STRICT =

View File

@@ -1,6 +1,6 @@
TARGET := chuck TARGET := chuck
LIBS += base libc libm pthread stdcxx rtaudio liblo sdl LIBS += base libc libm stdcxx rtaudio liblo sdl
LIBS += libsndfile libogg libvorbis libFLAC LIBS += libsndfile libogg libvorbis libFLAC
CHUCK_SRC_DIR = $(call select_from_ports,chuck)/src/app/chuck/src CHUCK_SRC_DIR = $(call select_from_ports,chuck)/src/app/chuck/src

View File

@@ -1,5 +1,5 @@
TARGET = ltris TARGET = ltris
LIBS = libc libm stdcxx sdlmain sdl sdl_mixer pthread LIBS = libc libm stdcxx sdlmain sdl sdl_mixer
LTRIS_DIR := $(call select_from_ports,ltris)/src/app/ltris LTRIS_DIR := $(call select_from_ports,ltris)/src/app/ltris

View File

@@ -1,5 +1,5 @@
TARGET = tor TARGET = tor
LIBS = libevent posix libssl libcrypto zlib pthread LIBS = libevent posix libssl libcrypto zlib
LIBS += libc_lwip_nic_dhcp LIBS += libc_lwip_nic_dhcp
TOR_DIR = $(call select_from_ports,tor)/src/app/tor TOR_DIR = $(call select_from_ports,tor)/src/app/tor
INC_DIR = $(PRG_DIR) \ INC_DIR = $(PRG_DIR) \

View File

@@ -1,5 +1,5 @@
TARGET = test-glib TARGET = test-glib
LIBS = libc pthread glib posix LIBS = libc glib posix
SRC_C = main.c SRC_C = main.c
# Strength through pointer arithmetic # Strength through pointer arithmetic