Browse Source

Fix path to crt0.o and libc.a

Jeremy Soller 6 years ago
parent
commit
83cb46afd8
1 changed files with 2 additions and 2 deletions
  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)