Skip to content

Commit

Permalink
Merge pull request #34 from matushorvath/new-bin2obj
Browse files Browse the repository at this point in the history
Support new bin2obj based on wc -c
  • Loading branch information
matushorvath authored Mar 17, 2024
2 parents f7f7bd5 + 2bd01ed commit 623810d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ define run-ld
endef

define run-bin2obj
ls -n $< | awk '{ printf "%s ", $$5 }' | cat - $< | $(ICVM) $(ICBIN2OBJ) > $@ || ( cat $@ ; false )
wc -c $< | cat - $< | $(ICVM) $(ICBIN2OBJ) > $@ || ( cat $@ ; false )
endef

# Build
Expand Down

0 comments on commit 623810d

Please sign in to comment.