must specify cflags to link
authornotaz <notasas@gmail.com>
Tue, 17 Oct 2023 22:44:46 +0000 (01:44 +0300)
committernotaz <notasas@gmail.com>
Tue, 17 Oct 2023 22:44:46 +0000 (01:44 +0300)
important for -mfpu when using lto

Makefile
frontend/plugin.c

index 1d57f2c..bf528b1 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -293,7 +293,7 @@ frontend/revision.h: FORCE
 target_: $(TARGET)
 
 $(TARGET): $(OBJS)
-       $(CC_LINK) -o $@ $^ $(LDFLAGS) $(LDLIBS) $(EXTRA_LDFLAGS)
+       $(CC_LINK) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LDLIBS) $(EXTRA_LDFLAGS)
 
 clean: $(PLAT_CLEAN) clean_plugins
        $(RM) $(TARGET) $(OBJS) $(TARGET).map frontend/revision.h
index e9dbcac..3683b50 100644 (file)
@@ -135,7 +135,7 @@ extern void GPUwriteDataMem(uint32_t *, int);
 extern uint32_t GPUreadStatus(void);
 extern uint32_t GPUreadData(void);
 extern void GPUreadDataMem(uint32_t *, int);
-extern long GPUdmaChain(uint32_t *,uint32_t);
+extern long GPUdmaChain(uint32_t *, uint32_t, uint32_t *);
 extern void GPUupdateLace(void);
 extern long GPUfreeze(uint32_t, void *);
 extern void GPUvBlank(int, int);