mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-27 19:24:06 +00:00
Remove -lrt from LDFLAGS.
- This might be required on some embedded system, but from what I can see all the functions we use from real time extensions are included in libc and the program seems to work fine without it. - It doesn't exist on MingwW or Mac, so I think it's better to remove it completely and add it later on any system that actually requires it. - Related to #85.
This commit is contained in:
parent
6f8a976b12
commit
b32867be2a
|
@ -64,8 +64,8 @@ INCLUDEDIRS = -I. -I./strategies -I./extras
|
|||
|
||||
CC = gcc
|
||||
CCFLAGS = $(DFLAGS) -std=gnu99 $(INCLUDEDIRS) $(WARNINGS)
|
||||
LDFLAGS += -lm
|
||||
LD = gcc -pthread -lrt
|
||||
LDFLAGS += -lm -pthread
|
||||
LD = gcc
|
||||
OBJS = interface_main.o \
|
||||
encmain.o \
|
||||
bitstream.o \
|
||||
|
|
Loading…
Reference in a new issue