mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-27 19:24:06 +00:00
Linker's objects/libraries order changed
gcc linker needs to parse objects before linking the necessary libraries
This commit is contained in:
parent
5d12706510
commit
3805483595
|
@ -32,7 +32,7 @@ PROG = ./kvazaar
|
|||
PROGS = $(PROG)
|
||||
|
||||
$(PROG): $(OBJS) $(ASMOBJS)
|
||||
$(LD) $(LDFLAGS) $^ -o $@
|
||||
$(LD) $^ $(LDFLAGS) -o $@
|
||||
|
||||
test.o: x86/test.asm
|
||||
$(YASM) -f elf x86/test.asm -o test.o
|
||||
|
|
Loading…
Reference in a new issue