Skip to content

Commit

Permalink
fix macOS Homebrew library paths
Browse files Browse the repository at this point in the history
  • Loading branch information
recoules committed Sep 1, 2023
1 parent 464fa4b commit f40b7c0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions api/dune
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
../vendor/bitwuzla/src/lib/bitwuzla-libs
../vendor/cadical/cadical)
(library_flags -linkall)
(c_library_flags :standard -lgmp))
(c_library_flags :standard -L/opt/homebrew/lib -lgmp))

(executable
(name result)
Expand All @@ -40,7 +40,7 @@
../vendor/bitwuzla/src/lib/bitwuzla-libs
../vendor/cadical/cadical)
(library_flags -linkall)
(c_library_flags :standard -lgmp))
(c_library_flags :standard -L/opt/homebrew/lib -lgmp))

(executable
(name rounding_mode)
Expand All @@ -60,7 +60,7 @@
../vendor/bitwuzla/src/lib/bitwuzla-libs
../vendor/cadical/cadical)
(library_flags -linkall)
(c_library_flags :standard -lgmp))
(c_library_flags :standard -L/opt/homebrew/lib -lgmp))

(executable
(name kind)
Expand All @@ -80,4 +80,4 @@
../vendor/bitwuzla/src/lib/bitwuzla-libs
../vendor/cadical/cadical)
(library_flags -linkall)
(c_library_flags :standard -lgmp))
(c_library_flags :standard -L/opt/homebrew/lib -lgmp))

0 comments on commit f40b7c0

Please sign in to comment.