mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-30 12:44:07 +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)
|
PROGS = $(PROG)
|
||||||
|
|
||||||
$(PROG): $(OBJS) $(ASMOBJS)
|
$(PROG): $(OBJS) $(ASMOBJS)
|
||||||
$(LD) $(LDFLAGS) $^ -o $@
|
$(LD) $^ $(LDFLAGS) -o $@
|
||||||
|
|
||||||
test.o: x86/test.asm
|
test.o: x86/test.asm
|
||||||
$(YASM) -f elf x86/test.asm -o test.o
|
$(YASM) -f elf x86/test.asm -o test.o
|
||||||
|
|
Loading…
Reference in a new issue