[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: linking tool to use a framework : obj_send_msg error
From: |
David Chisnall |
Subject: |
Re: linking tool to use a framework : obj_send_msg error |
Date: |
Mon, 13 Apr 2009 22:07:57 +0100 |
On 13 Apr 2009, at 21:43, Thomas Kupper wrote:
Hey David,
I already set -std=c99 in GNUmake.preamble. Tried both
ADDITIONAL_CFLAGS and .._OBJCFLAGS but in both cases the __VA_LIST_
macro isn't defined. Mmmh, I use gcc 4.3.
Do you have any other idea?
Yes - you ignore what I say, for I am talking nonsense.
Sorry, that should be __VA_ARGS__, not __VA_LIST__. In full:
#define objc_msgSend(obj, sel, ...) \
objc_msg_lookup(obj, sel)(obj, sel, ## __VA_ARGS__)
David