Procházet zdrojové kódy

Fix path to crt0.o and libc.a

Jeremy Soller před 6 roky
rodič
revize
83cb46afd8
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2 2
      tests/Makefile

+ 2 - 2
tests/Makefile

@@ -131,10 +131,10 @@ CFLAGS=\
 	-I ../target/openlibm/src \
 
 HEADLIBS=\
-	../target/debug/crt0.o
+	../target/release/crt0.o
 
 TAILLIBS=\
-	../target/debug/libc.a \
+	../target/release/libc.a \
 	../target/openlibm/libopenlibm.a
 
 %: %.c $(HEADLIBS) $(TAILLIBS)