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 23:28:18 +0000 (02:28 +0300)
important for -mfpu when using lto

Makefile
frontend/plugin.c

index 864565e..642a4c6 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -411,7 +411,7 @@ $(TARGET): $(OBJS)
 ifeq ($(STATIC_LINKING), 1)
        $(AR) rcs $@ $(OBJS)
 else
-       $(CC_LINK) -o $@ $^ $(LDFLAGS) $(LDLIBS) $(EXTRA_LDFLAGS)
+       $(CC_LINK) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LDLIBS) $(EXTRA_LDFLAGS)
 endif
 
 clean: $(PLAT_CLEAN) clean_plugins
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);