Skip to content

Commit 3541af8

Browse files
authored
Add ARM macs homebrew installation path to library search path (#118)
* Add ARM macs homebrew installation path to library search path * Bump version to 1.4.2
1 parent e58796f commit 3541af8

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

lib/bundlex/toolchain/common/unix/os_deps.ex

+2-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,8 @@ defmodule Bundlex.Toolchain.Common.Unix.OSDeps do
138138

139139
[
140140
"-L#{full_packages_library_path}",
141-
"-Wl,-rpath,#{full_packages_library_path}"
141+
"-Wl,-rpath,#{full_packages_library_path}",
142+
"-Wl,-rpath,/opt/homebrew/lib"
142143
] ++
143144
Enum.map(lib_names, &"-l#{remove_lib_prefix(&1)}")
144145
end

mix.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Bundlex.Mixfile do
22
use Mix.Project
33

4-
@version "1.4.1"
4+
@version "1.4.2"
55
@github_url "https://github.com/membraneframework/bundlex"
66

77
def project do

0 commit comments

Comments
 (0)