[Patches] [ python-Patches-402357 ] Add support for frameworks and objective-c source. Uesful for both GnuStep and for OSXS/OSX/Darwin.

nobody nobody@sourceforge.net
Thu, 01 Mar 2001 10:52:57 -0800


Patches #402357, was updated on 2000-11-11 00:31
You can respond by visiting: 
http://sourceforge.net/tracker/?func=detail&atid=305470&aid=402357&group_id=5470

Category: Modules
Group: None
Status: Open
Priority: 5
Submitted By: Bill Bumgarner
Assigned to: Guido van Rossum
Summary: Add support for frameworks and objective-c source.  Uesful for both GnuStep and for OSXS/OSX/Darwin.

Initial Comment:
 

----------------------------------------------------------------------

Comment By: Bill Bumgarner
Date: 2001-03-01 10:52

Message:
Logged In: YES 
user_id=103811

It should use the normal CC referenced compiler as ObjC is integrated directly into gcc and enabled through the use of the -ObjC flag.

Index: makesetup
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/makesetup,v
retrieving revision 1.34
diff -r1.34 makesetup
207c207
< 			*.m)   obj=`basename $src .m`.o; cc='$(CXX)';; # Obj-C
---
> 			*.m)   obj=`basename $src .m`.o; cc='$(CC)';; # Obj-C

Thank you.


----------------------------------------------------------------------

Comment By: Guido van Rossum
Date: 2001-01-10 13:46

Message:
Applied.

Again, somehow the line numbers in your diff were broken!

I've changed $(CCC) to $(CXX) since that is now the name of the C++ compiler.  If this wasn't what you intended, please get in touch.

----------------------------------------------------------------------

You can respond by visiting: 
http://sourceforge.net/tracker/?func=detail&atid=305470&aid=402357&group_id=5470