2014-07-02 21:57:52 -05:00
|
|
|
require "formula"
|
|
|
|
require "compilers"
|
2013-11-27 17:29:06 -06:00
|
|
|
|
2015-08-29 10:56:24 +01:00
|
|
|
# Homebrew extends Ruby's `ENV` to make our code more readable.
|
|
|
|
# Implemented in {SharedEnvExtension} and either {Superenv} or
|
|
|
|
# {Stdenv} (depending on the build mode).
|
|
|
|
# @see Superenv
|
|
|
|
# @see Stdenv
|
|
|
|
# @see http://www.rubydoc.info/stdlib/Env Ruby's ENV API
|
2013-08-19 12:32:59 -05:00
|
|
|
module SharedEnvExtension
|
2014-07-02 21:57:52 -05:00
|
|
|
include CompilerConstants
|
|
|
|
|
2015-08-29 10:56:24 +01:00
|
|
|
# @private
|
2015-08-03 13:09:07 +01:00
|
|
|
CC_FLAG_VARS = %w[CFLAGS CXXFLAGS OBJCFLAGS OBJCXXFLAGS]
|
2015-08-29 10:56:24 +01:00
|
|
|
# @private
|
2015-08-03 13:09:07 +01:00
|
|
|
FC_FLAG_VARS = %w[FCFLAGS FFLAGS]
|
2015-08-29 10:56:24 +01:00
|
|
|
# @private
|
2014-05-26 14:10:24 -05:00
|
|
|
SANITIZED_VARS = %w[
|
|
|
|
CDPATH GREP_OPTIONS CLICOLOR_FORCE
|
|
|
|
CPATH C_INCLUDE_PATH CPLUS_INCLUDE_PATH OBJC_INCLUDE_PATH
|
|
|
|
CC CXX OBJC OBJCXX CPP MAKE LD LDSHARED
|
|
|
|
CFLAGS CXXFLAGS OBJCFLAGS OBJCXXFLAGS LDFLAGS CPPFLAGS
|
|
|
|
MACOSX_DEPLOYMENT_TARGET SDKROOT DEVELOPER_DIR
|
|
|
|
CMAKE_PREFIX_PATH CMAKE_INCLUDE_PATH CMAKE_FRAMEWORK_PATH
|
2015-05-14 20:04:45 -04:00
|
|
|
GOBIN GOPATH GOROOT
|
2014-12-17 14:37:03 -05:00
|
|
|
LIBRARY_PATH
|
2014-05-26 14:10:24 -05:00
|
|
|
]
|
|
|
|
|
2015-08-29 10:56:24 +01:00
|
|
|
# @private
|
2015-08-03 13:09:07 +01:00
|
|
|
def setup_build_environment(formula = nil)
|
2014-09-18 15:50:54 -05:00
|
|
|
@formula = formula
|
2014-09-18 16:43:56 -05:00
|
|
|
reset
|
2014-09-18 15:50:54 -05:00
|
|
|
end
|
|
|
|
|
2015-08-29 10:56:24 +01:00
|
|
|
# @private
|
2014-05-26 14:10:24 -05:00
|
|
|
def reset
|
|
|
|
SANITIZED_VARS.each { |k| delete(k) }
|
|
|
|
end
|
|
|
|
|
2013-08-19 12:32:59 -05:00
|
|
|
def remove_cc_etc
|
2015-08-03 13:09:07 +01:00
|
|
|
keys = %w[CC CXX OBJC OBJCXX LD CPP CFLAGS CXXFLAGS OBJCFLAGS OBJCXXFLAGS LDFLAGS CPPFLAGS]
|
2015-08-06 17:12:35 +08:00
|
|
|
removed = Hash[*keys.flat_map { |key| [key, self[key]] }]
|
2013-08-19 12:32:59 -05:00
|
|
|
keys.each do |key|
|
|
|
|
delete(key)
|
|
|
|
end
|
|
|
|
removed
|
|
|
|
end
|
2015-08-03 13:09:07 +01:00
|
|
|
|
|
|
|
def append_to_cflags(newflags)
|
2013-08-19 12:32:59 -05:00
|
|
|
append(CC_FLAG_VARS, newflags)
|
|
|
|
end
|
2015-08-03 13:09:07 +01:00
|
|
|
|
|
|
|
def remove_from_cflags(val)
|
2013-08-19 12:32:59 -05:00
|
|
|
remove CC_FLAG_VARS, val
|
|
|
|
end
|
2015-08-03 13:09:07 +01:00
|
|
|
|
|
|
|
def append(keys, value, separator = " ")
|
2013-08-19 12:32:59 -05:00
|
|
|
value = value.to_s
|
|
|
|
Array(keys).each do |key|
|
2014-07-18 11:43:37 -05:00
|
|
|
old = self[key]
|
|
|
|
if old.nil? || old.empty?
|
2013-08-26 15:02:51 -05:00
|
|
|
self[key] = value
|
2014-07-18 11:43:37 -05:00
|
|
|
else
|
|
|
|
self[key] += separator + value
|
2013-08-19 12:32:59 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2015-08-03 13:09:07 +01:00
|
|
|
|
|
|
|
def prepend(keys, value, separator = " ")
|
2013-08-26 15:02:51 -05:00
|
|
|
value = value.to_s
|
2013-08-19 12:32:59 -05:00
|
|
|
Array(keys).each do |key|
|
2014-07-18 11:43:37 -05:00
|
|
|
old = self[key]
|
|
|
|
if old.nil? || old.empty?
|
2013-08-26 15:02:51 -05:00
|
|
|
self[key] = value
|
2014-07-18 11:43:37 -05:00
|
|
|
else
|
|
|
|
self[key] = value + separator + old
|
2013-08-19 12:32:59 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2013-08-19 17:21:13 -05:00
|
|
|
|
2015-08-03 13:09:07 +01:00
|
|
|
def append_path(key, path)
|
2013-08-19 17:21:13 -05:00
|
|
|
append key, path, File::PATH_SEPARATOR if File.directory? path
|
|
|
|
end
|
|
|
|
|
2015-08-29 10:56:24 +01:00
|
|
|
# Prepends a directory to `PATH`.
|
|
|
|
# Is the formula struggling to find the pkgconfig file? Point it to it.
|
|
|
|
# This is done automatically for `keg_only` formulae.
|
|
|
|
# <pre>ENV.prepend_path "PKG_CONFIG_PATH", "#{Formula["glib"].opt_lib}/pkgconfig"</pre>
|
2015-08-03 13:09:07 +01:00
|
|
|
def prepend_path(key, path)
|
2013-08-15 21:50:13 +02:00
|
|
|
prepend key, path, File::PATH_SEPARATOR if File.directory? path
|
2013-08-19 12:32:59 -05:00
|
|
|
end
|
2013-08-19 17:21:13 -05:00
|
|
|
|
2015-08-03 13:09:07 +01:00
|
|
|
def prepend_create_path(key, path)
|
2014-01-04 12:49:01 +00:00
|
|
|
path = Pathname.new(path) unless path.is_a? Pathname
|
|
|
|
path.mkpath
|
|
|
|
prepend_path key, path
|
|
|
|
end
|
|
|
|
|
2015-08-03 13:09:07 +01:00
|
|
|
def remove(keys, value)
|
2013-08-19 12:32:59 -05:00
|
|
|
Array(keys).each do |key|
|
|
|
|
next unless self[key]
|
2015-08-03 13:09:07 +01:00
|
|
|
self[key] = self[key].sub(value, "")
|
2014-07-18 11:43:37 -05:00
|
|
|
delete(key) if self[key].empty?
|
2013-08-19 12:32:59 -05:00
|
|
|
end if value
|
|
|
|
end
|
|
|
|
|
2015-08-03 13:09:07 +01:00
|
|
|
def cc
|
|
|
|
self["CC"]
|
|
|
|
end
|
|
|
|
|
|
|
|
def cxx
|
|
|
|
self["CXX"]
|
|
|
|
end
|
|
|
|
|
|
|
|
def cflags
|
|
|
|
self["CFLAGS"]
|
|
|
|
end
|
|
|
|
|
|
|
|
def cxxflags
|
|
|
|
self["CXXFLAGS"]
|
|
|
|
end
|
|
|
|
|
|
|
|
def cppflags
|
|
|
|
self["CPPFLAGS"]
|
|
|
|
end
|
|
|
|
|
|
|
|
def ldflags
|
|
|
|
self["LDFLAGS"]
|
|
|
|
end
|
|
|
|
|
|
|
|
def fc
|
|
|
|
self["FC"]
|
|
|
|
end
|
|
|
|
|
|
|
|
def fflags
|
|
|
|
self["FFLAGS"]
|
|
|
|
end
|
|
|
|
|
|
|
|
def fcflags
|
|
|
|
self["FCFLAGS"]
|
|
|
|
end
|
2013-08-19 12:32:59 -05:00
|
|
|
|
2015-08-29 10:56:24 +01:00
|
|
|
# Outputs the current compiler.
|
|
|
|
# @return [Symbol]
|
|
|
|
# <pre># Do something only for clang
|
|
|
|
# if ENV.compiler == :clang
|
|
|
|
# # modify CFLAGS CXXFLAGS OBJCFLAGS OBJCXXFLAGS in one go:
|
|
|
|
# ENV.append_to_cflags "-I ./missing/includes"
|
|
|
|
# end</pre>
|
2013-08-24 14:03:16 -07:00
|
|
|
def compiler
|
2014-09-18 15:50:54 -05:00
|
|
|
@compiler ||= if (cc = ARGV.cc)
|
2015-06-21 21:18:23 -04:00
|
|
|
warn_about_non_apple_gcc($&) if cc =~ GNU_GCC_REGEXP
|
2014-09-18 15:50:54 -05:00
|
|
|
fetch_compiler(cc, "--cc")
|
|
|
|
elsif (cc = homebrew_cc)
|
2015-06-21 21:18:23 -04:00
|
|
|
warn_about_non_apple_gcc($&) if cc =~ GNU_GCC_REGEXP
|
2014-09-18 15:50:54 -05:00
|
|
|
compiler = fetch_compiler(cc, "HOMEBREW_CC")
|
|
|
|
|
|
|
|
if @formula
|
|
|
|
compilers = [compiler] + CompilerSelector.compilers
|
|
|
|
compiler = CompilerSelector.select_for(@formula, compilers)
|
2013-08-22 22:29:49 -07:00
|
|
|
end
|
2014-09-18 15:50:54 -05:00
|
|
|
|
|
|
|
compiler
|
|
|
|
elsif @formula
|
|
|
|
CompilerSelector.select_for(@formula)
|
2013-08-24 14:03:16 -07:00
|
|
|
else
|
|
|
|
MacOS.default_compiler
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-08-29 10:56:24 +01:00
|
|
|
# @private
|
2014-06-18 16:12:32 -04:00
|
|
|
def determine_cc
|
|
|
|
COMPILER_SYMBOL_MAP.invert.fetch(compiler, compiler)
|
|
|
|
end
|
|
|
|
|
2014-06-22 18:43:01 -05:00
|
|
|
COMPILERS.each do |compiler|
|
|
|
|
define_method(compiler) do
|
|
|
|
@compiler = compiler
|
2014-06-18 16:12:32 -04:00
|
|
|
self.cc = determine_cc
|
|
|
|
self.cxx = determine_cxx
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-08-29 10:56:24 +01:00
|
|
|
# Snow Leopard defines an NCURSES value the opposite of most distros.
|
2015-01-04 05:02:27 +01:00
|
|
|
# See: https://bugs.python.org/issue6848
|
2015-08-29 10:56:24 +01:00
|
|
|
# Currently only used by aalib in core.
|
2013-08-19 12:32:59 -05:00
|
|
|
def ncurses_define
|
2015-08-03 13:09:07 +01:00
|
|
|
append "CPPFLAGS", "-DNCURSES_OPAQUE=0"
|
2013-08-19 12:32:59 -05:00
|
|
|
end
|
|
|
|
|
2015-08-29 10:56:24 +01:00
|
|
|
# @private
|
2013-08-19 12:32:59 -05:00
|
|
|
def userpaths!
|
2015-09-27 15:45:57 +08:00
|
|
|
paths = self["PATH"].split(File::PATH_SEPARATOR)
|
|
|
|
# put Superenv.bin and opt path at the first
|
|
|
|
new_paths = paths.select { |p| p.start_with?("#{HOMEBREW_REPOSITORY}/Library/ENV") || p.start_with?("#{HOMEBREW_PREFIX}/opt") }
|
2013-08-19 12:32:59 -05:00
|
|
|
# XXX hot fix to prefer brewed stuff (e.g. python) over /usr/bin.
|
2015-09-27 15:45:57 +08:00
|
|
|
new_paths << "#{HOMEBREW_PREFIX}/bin"
|
|
|
|
# reset of self["PATH"]
|
|
|
|
new_paths += paths
|
|
|
|
# user paths
|
|
|
|
new_paths += ORIGINAL_PATHS.map { |p| p.realpath.to_s rescue nil } - %w[/usr/X11/bin /opt/X11/bin]
|
|
|
|
self["PATH"] = new_paths.uniq.join(File::PATH_SEPARATOR)
|
2013-08-19 12:32:59 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def fortran
|
2013-08-30 19:07:10 -05:00
|
|
|
flags = []
|
|
|
|
|
2013-08-30 19:00:19 -05:00
|
|
|
if fc
|
2013-08-19 12:32:59 -05:00
|
|
|
ohai "Building with an alternative Fortran compiler"
|
|
|
|
puts "This is unsupported."
|
2015-08-03 13:09:07 +01:00
|
|
|
self["F77"] ||= fc
|
2013-08-19 12:32:59 -05:00
|
|
|
|
2015-08-03 13:09:07 +01:00
|
|
|
if ARGV.include? "--default-fortran-flags"
|
2013-08-30 19:07:10 -05:00
|
|
|
flags = FC_FLAG_VARS.reject { |key| self[key] }
|
2013-08-30 18:59:58 -05:00
|
|
|
elsif values_at(*FC_FLAG_VARS).compact.empty?
|
2013-08-19 12:32:59 -05:00
|
|
|
opoo <<-EOS.undent
|
|
|
|
No Fortran optimization information was provided. You may want to consider
|
|
|
|
setting FCFLAGS and FFLAGS or pass the `--default-fortran-flags` option to
|
|
|
|
`brew install` if your compiler is compatible with GCC.
|
|
|
|
|
|
|
|
If you like the default optimization level of your compiler, ignore this
|
|
|
|
warning.
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
2014-02-02 12:57:46 -06:00
|
|
|
else
|
2015-08-03 13:09:07 +01:00
|
|
|
if (gfortran = which("gfortran", (HOMEBREW_PREFIX/"bin").to_s))
|
2014-02-02 12:57:46 -06:00
|
|
|
ohai "Using Homebrew-provided fortran compiler."
|
2015-08-03 13:09:07 +01:00
|
|
|
elsif (gfortran = which("gfortran", ORIGINAL_PATHS.join(File::PATH_SEPARATOR)))
|
2014-02-02 12:57:46 -06:00
|
|
|
ohai "Using a fortran compiler found at #{gfortran}."
|
|
|
|
end
|
|
|
|
if gfortran
|
|
|
|
puts "This may be changed by setting the FC environment variable."
|
2015-08-03 13:09:07 +01:00
|
|
|
self["FC"] = self["F77"] = gfortran
|
2014-02-02 12:57:46 -06:00
|
|
|
flags = FC_FLAG_VARS
|
|
|
|
end
|
2013-08-19 12:32:59 -05:00
|
|
|
end
|
2013-08-30 19:07:10 -05:00
|
|
|
|
|
|
|
flags.each { |key| self[key] = cflags }
|
|
|
|
set_cpu_flags(flags)
|
2013-08-19 12:32:59 -05:00
|
|
|
end
|
2013-06-04 10:18:14 -05:00
|
|
|
|
2015-12-16 15:59:20 +00:00
|
|
|
def java_cache
|
|
|
|
append "_JAVA_OPTIONS", "-Duser.home=#{HOMEBREW_CACHE}/java_cache"
|
|
|
|
end
|
|
|
|
|
2013-09-28 14:57:17 -07:00
|
|
|
# ld64 is a newer linker provided for Xcode 2.5
|
2015-08-29 10:56:24 +01:00
|
|
|
# @private
|
2013-09-28 14:57:17 -07:00
|
|
|
def ld64
|
2015-08-03 13:09:07 +01:00
|
|
|
ld64 = Formulary.factory("ld64")
|
|
|
|
self["LD"] = ld64.bin/"ld"
|
2014-04-04 22:02:48 -05:00
|
|
|
append "LDFLAGS", "-B#{ld64.bin}/"
|
2013-09-28 14:57:17 -07:00
|
|
|
end
|
|
|
|
|
2015-08-29 10:56:24 +01:00
|
|
|
# @private
|
2015-06-21 21:18:23 -04:00
|
|
|
def gcc_version_formula(name)
|
|
|
|
version = name[GNU_GCC_REGEXP, 1]
|
2015-08-03 13:09:07 +01:00
|
|
|
gcc_version_name = "gcc#{version.delete(".")}"
|
2014-04-29 08:51:56 +01:00
|
|
|
|
2015-06-22 21:00:40 -04:00
|
|
|
gcc = Formulary.factory("gcc")
|
2015-09-12 11:47:14 -07:00
|
|
|
if gcc.version_suffix == version
|
2015-06-22 21:00:40 -04:00
|
|
|
gcc
|
2014-04-30 12:38:22 +01:00
|
|
|
else
|
2015-06-21 21:18:24 -04:00
|
|
|
Formulary.factory(gcc_version_name)
|
2014-04-29 08:51:56 +01:00
|
|
|
end
|
2014-04-19 09:11:52 +01:00
|
|
|
end
|
|
|
|
|
2015-08-29 10:56:24 +01:00
|
|
|
# @private
|
2015-06-21 21:18:23 -04:00
|
|
|
def warn_about_non_apple_gcc(name)
|
2013-06-04 10:18:14 -05:00
|
|
|
begin
|
2015-06-21 21:18:23 -04:00
|
|
|
gcc_formula = gcc_version_formula(name)
|
2015-06-22 21:08:27 -04:00
|
|
|
rescue FormulaUnavailableError => e
|
2015-06-21 21:18:23 -04:00
|
|
|
raise <<-EOS.undent
|
2015-06-22 21:08:27 -04:00
|
|
|
Homebrew GCC requested, but formula #{e.name} not found!
|
2015-06-21 21:18:23 -04:00
|
|
|
You may need to: brew tap homebrew/versions
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
2015-06-21 21:18:24 -04:00
|
|
|
unless gcc_formula.opt_prefix.exist?
|
2015-06-21 21:18:23 -04:00
|
|
|
raise <<-EOS.undent
|
2015-06-21 21:18:24 -04:00
|
|
|
The requested Homebrew GCC was not installed. You must:
|
|
|
|
brew install #{gcc_formula.full_name}
|
2013-06-04 10:18:14 -05:00
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|
2014-05-14 00:00:59 -05:00
|
|
|
|
|
|
|
def permit_arch_flags; end
|
2014-05-18 14:34:31 -05:00
|
|
|
|
|
|
|
private
|
|
|
|
|
2015-08-03 13:09:07 +01:00
|
|
|
def cc=(val)
|
2014-05-18 14:34:31 -05:00
|
|
|
self["CC"] = self["OBJC"] = val.to_s
|
|
|
|
end
|
|
|
|
|
2015-08-03 13:09:07 +01:00
|
|
|
def cxx=(val)
|
2014-05-18 14:34:31 -05:00
|
|
|
self["CXX"] = self["OBJCXX"] = val.to_s
|
|
|
|
end
|
2014-05-18 14:34:31 -05:00
|
|
|
|
|
|
|
def homebrew_cc
|
|
|
|
self["HOMEBREW_CC"]
|
|
|
|
end
|
2014-09-18 15:50:54 -05:00
|
|
|
|
|
|
|
def fetch_compiler(value, source)
|
|
|
|
COMPILER_SYMBOL_MAP.fetch(value) do |other|
|
|
|
|
case other
|
|
|
|
when GNU_GCC_REGEXP
|
|
|
|
other
|
|
|
|
else
|
|
|
|
raise "Invalid value for #{source}: #{other}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2015-12-09 10:37:49 -05:00
|
|
|
|
|
|
|
def check_for_compiler_universal_support
|
|
|
|
if homebrew_cc =~ GNU_GCC_REGEXP
|
|
|
|
raise "Non-Apple GCC can't build universal binaries"
|
|
|
|
end
|
|
|
|
end
|
2013-08-19 12:32:59 -05:00
|
|
|
end
|