brew install make
I installed GNU make in .
which make
/usr/local/bin/make
and
/usr/local/bin/make --version
GNU Make 4.2.1
Yes, but
make --version
GNU Make 3.81
It will be
echo$PATH
/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:
So the path should have passed.
How can I increase the priority over the command that came with the mac?
macos homebrew makefile
The make
installed in brew is named gmake
to prevent conflicts with the macOS bundled ones.
Use gmake
to use what you have installed.
© 2024 OneMinuteCode. All rights reserved.