Installing glibc from Brew #2253
-
CUT from a discussion " All of our bottles currently require Glibc 2.23 or newer, and we install our own glibc if the host one is too old."- But, if the host has let's say 2.24 but I still want to use 2.23 from the brew install (because I want to avoid dependency on the host, maybe i'm running gcc and binutils from brew also), is there any way to force the install of 2.23 with brew anyway in this situation. Right now one will only get a "Installing a version of glibc that is older than your system's can break formulae installed from source." |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You could get rid of the Note, however, that there is no reason to do this: GCC and Binutils should work with the host Glibc. If you want to use this machine to build redistributable binary packages, the better thing to do would be to use Homebrew's Ubuntu 16.04 Docker container. |
Beta Was this translation helpful? Give feedback.
You could get rid of the
depends_on BrewedGlibcNotOlderRequirement
from the formula to stopbrew
from preventing you from installing it.Note, however, that there is no reason to do this: GCC and Binutils should work with the host Glibc. If you want to use this machine to build redistributable binary packages, the better thing to do would be to use Homebrew's Ubuntu 16.04 Docker container.