From 282313c68fe4f8fbe11e69cdd2b8d7505735964b Mon Sep 17 00:00:00 2001 From: Max Howell Date: Fri, 31 Aug 2012 12:05:45 -0400 Subject: [PATCH] Remove -fopenmp, fix pixman Possibly this is not wise, but with -fopenmp -lgomp is automatically added by the toolchain, and I didn't have -lgomp. Ideally we'd detect when this will work and then leave it in there. /cc @sharpie @mikemcquaid @jacknagel --- Library/ENV/4.3/cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Library/ENV/4.3/cc b/Library/ENV/4.3/cc index ccf07278b8..f9f5e61d20 100755 --- a/Library/ENV/4.3/cc +++ b/Library/ENV/4.3/cc @@ -100,6 +100,9 @@ class Cmd %r{^-[IL]/opt/local}, %r{^-[IL]/sw}, # no macports/fink %r{^-[IL]/usr/X11}, %r{^-[IL]/opt/X11}, # we add X11 ourselves '-pedantic', '-pedantic-errors' + when /^-fopenmp/ + # remove this arg: it fails the build with: + # ld: library not found for -lgomp when /^-W.*/ args << arg if arg =~ /^-Wl,/ when '-macosx_version_min', '-dylib_install_name'