Skip to content

Commit

Permalink
Fix build_linux.py, add ls -lh ../bin/usearch12 to confirm for user w…
Browse files Browse the repository at this point in the history
…here binary is
  • Loading branch information
rcedgar committed Jun 13, 2024
1 parent 921d1a9 commit b1d935b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/build_linux.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,10 +151,12 @@ def Out(s):
Out("clean:")
Out(" rm -rf $(OBJDIR)/ $(BINPATH)")

rc = os.system("rm -f o/myutils.o ../bin/reseek")
rc = os.system("rm -f o/myutils.o ../bin/usearch12")

rc = os.system("make > make.stdout 2> make.stderr")
if rc != 0:
os.system("tail make.stderr")
sys.stderr.write("\n\nERROR -- make failed, see make.stderr\n\n")
sys.exit(1)

rc = os.system("ls -lh ../bin/usearch12")

0 comments on commit b1d935b

Please sign in to comment.