Skip to content
Snippets Groups Projects
Commit f437c904 authored by Jack Nagel's avatar Jack Nagel
Browse files

Resolve multi-level gcc symlinks


In later XCodes, gcc is a symlink to gcc-4.2 which is itself a symlink
to llvm-gcc, so it is necessary to resolve multiple symlinks.

Signed-off-by: default avatarJack Nagel <jacknagel@gmail.com>
parent 33db0a96
No related branches found
No related tags found
No related merge requests found
......@@ -90,8 +90,7 @@ module HomebrewEnvExtension
@compiler = :gcc
raise "GCC could not be found" if args[:force] and not File.exist? ENV['CC'] \
or (File.symlink? ENV['CC'] \
and File.readlink(ENV['CC']) =~ /llvm/)
or (Pathname.new(ENV['CC']).realpath.to_s =~ /llvm/)
end
alias_method :gcc_4_2, :gcc
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment