diff options
| author | Max Howell | 2009-11-11 21:49:39 +0000 |
|---|---|---|
| committer | Max Howell | 2009-11-11 21:51:44 +0000 |
| commit | c078840bfb2ca6da638b63b55fffd24839ca8b2f (patch) | |
| tree | 412b7ec158871a00571bb025013e2b14ea71188e /bin | |
| parent | f1fb54ba54618f4a46abcb93c8aaa6ca6604ba7f (diff) | |
| download | homebrew-c078840bfb2ca6da638b63b55fffd24839ca8b2f.tar.bz2 | |
Show kernel architecture in brew --config output
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/brew | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -52,6 +52,7 @@ def dump_config end llvm = llvm_build sha = `git rev-parse --verify HEAD`.chomp + kernel_arch = `uname -m`.chomp puts <<-EOS HOMEBREW_VERSION: #{HOMEBREW_VERSION} @@ -60,9 +61,10 @@ HOMEBREW_PREFIX: #{HOMEBREW_PREFIX} HOMEBREW_CELLAR: #{HOMEBREW_CELLAR} HOMEBREW_CACHE: #{HOMEBREW_CACHE} HOMEBREW_REPOSITORY: #{HOMEBREW_REPOSITORY} -Library path: #{$:.first} +Library Path: #{$:.first} Hardware: #{cores}-core #{bits}-bit #{Hardware.intel_family} OS X: #{MACOS_FULL_VERSION} +Kernel Architecture: #{kernel_arch} Ruby: #{RUBY_VERSION}-#{RUBY_PATCHLEVEL} GCC: 4.2 build #{gcc_build} LLVM: #{llvm ? "build #{llvm}" : "N/A" } |
