This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Add support for frameworks and objective-c source. Uesful for both GnuStep and for OSXS/OSX/Darwin.
Type: Stage:
Components: Build Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: gvanrossum Nosy List: bbum, gvanrossum
Priority: normal Keywords: patch

Created on 2000-11-11 08:31 by bbum, last changed 2022-04-10 16:03 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
None bbum, 2000-11-11 08:31 None
Messages (4)
msg34791 - (view) Author: Bill Bumgarner (bbum) Date: 2000-11-11 08:31
 
msg34792 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2001-01-10 21:46
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.
msg34793 - (view) Author: Bill Bumgarner (bbum) Date: 2001-03-01 18:52
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.
msg34794 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2001-03-02 07:11
Logged In: YES 
user_id=6380

OK, applied.  Closing now.

(Hey, did SF reopen it automatically as a result of you
adding a comment? Neat!)
History
Date User Action Args
2022-04-10 16:03:29adminsetgithub: 33467
2000-11-11 08:31:31bbumcreate