Skip to content

Commit

Permalink
Merge pull request #41 from octu0/v1.20.2
Browse files Browse the repository at this point in the history
v1.20.2
  • Loading branch information
octu0 committed Oct 22, 2023
2 parents f8ab340 + 40ee898 commit 601e912
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ setup-halide:
ifeq ($(shell uname),Linux)
sudo apt install libpng-dev libjpeg-dev clang g++ binutils
else
brew install halide
brew install libpng
brew install jpeg
brew install pkg-config
endif

.PHONY: setup-halide-runtime_linux
Expand Down
2 changes: 2 additions & 0 deletions cli/genrun/genrun.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ func generate(runtimePath, blurryPath, target string) (string, error) {
"-I" + runtimePath + "/share/Halide/tools",
"-L" + runtimePath + "/lib",
libpngFlags,
"-L/usr/local/opt/jpeg/lib",
"-I/usr/local/opt/jpeg/include",
"-ljpeg",
"-lHalide",
"-lpthread",
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ package blurry

const (
AppName string = "blurry"
Version string = "1.20.1"
Version string = "1.20.2"
)

0 comments on commit 601e912

Please sign in to comment.