Skip to content

Commit

Permalink
Add ARM macs homebrew installation path to library search path (#118)
Browse files Browse the repository at this point in the history
* Add ARM macs homebrew installation path to library search path

* Bump version to 1.4.2
  • Loading branch information
Noarkhh authored Dec 14, 2023
1 parent e58796f commit 3541af8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion lib/bundlex/toolchain/common/unix/os_deps.ex
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,8 @@ defmodule Bundlex.Toolchain.Common.Unix.OSDeps do

[
"-L#{full_packages_library_path}",
"-Wl,-rpath,#{full_packages_library_path}"
"-Wl,-rpath,#{full_packages_library_path}",
"-Wl,-rpath,/opt/homebrew/lib"
] ++
Enum.map(lib_names, &"-l#{remove_lib_prefix(&1)}")
end
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Bundlex.Mixfile do
use Mix.Project

@version "1.4.1"
@version "1.4.2"
@github_url "https://github.com/membraneframework/bundlex"

def project do
Expand Down

0 comments on commit 3541af8

Please sign in to comment.