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

Use MacOS.locate and delete wrong comment

parent 0de7f98b
No related branches found
No related tags found
No related merge requests found
......@@ -113,9 +113,8 @@ module Stdenv
end
def gcc_4_0_1
# we don't use locate because gcc 4.0 has not been provided since Xcode 4
self.cc = "#{MacOS.dev_tools_path}/gcc-4.0"
self.cxx = "#{MacOS.dev_tools_path}/g++-4.0"
self.cc = MacOS.locate("gcc-4.0")
self.cxx = MacOS.locate("g++-4.0")
set_cpu_cflags '-march=nocona -mssse3'
@compiler = :gcc_4_0
end
......
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