gcc: jit always requires enable-host-shared

Closes Homebrew/homebrew#40049.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
This commit is contained in:
Peter Powell 2015-05-24 11:59:02 +01:00 committed by Dominyk Tiller
parent 4e8d1ba5d0
commit 07d087b717

View file

@ -137,7 +137,7 @@ class Gcc < Formula
args << "--enable-multilib"
end
args << "--enable-host-shared" if build.with? "jit"
args << "--enable-host-shared" if build.with?("jit") || build.with?("all-languages")
# Ensure correct install names when linking against libgcc_s;
# see discussion in https://github.com/Homebrew/homebrew/pull/34303