Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

Commit

Permalink
clisp: fix LLVM builds
Browse files Browse the repository at this point in the history
This patch from MacPorts seems to be all that is necessary to enable
building with LLVM-GCC. I can't test it with any LLVM builds other than
2336, though.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
  • Loading branch information
jacknagel committed Jan 18, 2012
1 parent 77cbad6 commit 32d8ed4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Library/Formula/clisp.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@ class Clisp < Formula

skip_clean :all # otherwise abort trap

fails_with_llvm "Fails during configure with LLVM GCC from XCode 4 on Snow Leopard"
fails_with_llvm "Configure fails on XCode 4/Snow Leopard.", :build => 2335

def patches
{ :p0 => "https://svn.macports.org/repository/macports/!svn/bc/89054/trunk/dports/lang/clisp/files/patch-src_lispbibl_d.diff" }
end

def install
ENV.j1 # This build isn't parallel safe.
Expand Down

3 comments on commit 32d8ed4

@mistydemeo
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice. I'll try to test this on Xcode 3.2.6 (2335.6) tomorrow.

@mistydemeo
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wasn't able to test on Leopard, but works fine with Xcode 3.2.6.

@MikeMcQuaid
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice one. Can we minimise/upstream this?

Please sign in to comment.