c - Installing GCC 4.4.7 on OSX 10.10 -
i have gcc version 6.1.0 installed on computer xcode:
configured with: --prefix=/applications/xcode.app/contents/developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1 apple llvm version 6.1.0 (clang-602.0.53) (based on llvm 3.6.0svn) target: x86_64-apple-darwin15.0.0 thread model: posix
but need install gcc version 4.4.7 , have tried doing things brew install gcc447 , such says package not found. there way install gcc 4.4.7 on osx 10.10 , have run "gcc4" or similar alias while still keeping xcode 6.1.0 version?
homebrew doesn't have recipes every individual minor version of gcc, major versions 4.4. conveniently, though, 4.4.7 recent version of gcc 4.4, you're fine.
run brew install gcc44
; compiler installed gcc-4.4
.
Comments
Post a Comment