You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to accommodate different location for the dependencies (for personal reasons I prefer to completely isolate Homebrew from the rest of the system, so I installed it in /brew/local instead of /usr/local), I added the following definition to the Makefile
It would be useful to have something like this included in the Makefile, to simplify customisation when using different environments. (same for the ARM build)
Thank you,
Liviu
The text was updated successfully, but these errors were encountered:
As in the post about PREFIX, it is not needed to edit the Makefile to update the definition of DEPENDENCIES, it can be inherited from the environment.
I completely removed them from the Makefile and used the following before calling make:
# Define extra dependencies, in case they are not in the system path
DEPENDENCY_DIR=/brew/local
export DEPENDENCIES="--with-mpc=$DEPENDENCY_DIR --with-mpfr=$DEPENDENCY_DIR --with-gmp=$DEPENDENCY_DIR"
In order to accommodate different location for the dependencies (for personal reasons I prefer to completely isolate Homebrew from the rest of the system, so I installed it in /brew/local instead of /usr/local), I added the following definition to the Makefile
DEPENDENCY_DIR = /usr/local
DEPENDENCY_DIR = /brew/local
DEPENDENCIES = --with-mpc=$(DEPENDENCY_DIR) --with-mpfr=$(DEPENDENCY_DIR) --with-gmp=$(DEPENDENCY_DIR)
and when building gcc I used
(similarly for g++).
It would be useful to have something like this included in the Makefile, to simplify customisation when using different environments. (same for the ARM build)
Thank you,
Liviu
The text was updated successfully, but these errors were encountered: