[Telepathy] [Bug 15026] compilation on osX fail in weird way

bugzilla-daemon at freedesktop.org bugzilla-daemon at freedesktop.org
Wed Apr 2 11:42:21 PDT 2008


http://bugs.freedesktop.org/show_bug.cgi?id=15026





--- Comment #3 from Simon McVittie <simon.mcvittie at collabora.co.uk>  2008-04-02 11:42:20 PST ---
By setting CC to a shell script that rejects -Wl,-O1 and -Wl,--version-script
and execs gcc for anything else, I can confirm that the version of that branch
with two Darcs patches does not work, but the updated version I've just pushed
with three Darcs patches (you'll need to wait around 5 minutes from the time of
this comment to get it from the /diff URL) does work.

My pseudo-Mac C compiler, for future reference:

#!/bin/sh
case "$*" in
  *Wl,--version-script*)
    echo "-Wl,--version-script not supported here"
    exit 42
    ;;
  *Wl,-O1*)
    echo "-Wl,-O1 not supported here"
    exit 42
    ;;
esac
exec /usr/bin/gcc "$@"


-- 
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.


More information about the Telepathy mailing list