A slightly modified libobjc that can be compiled with mingw on my machine.
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
sandyx86 55da442427 change some stuff 1 year ago
config change some stuff 1 year ago
objc change some stuff 1 year ago
ChangeLog new snapshot 15 years ago
ChangeLog.GNUstep Version 1.6.0 19 years ago
GNUmakefile new snapshot 15 years ago
Makefile.in This commit was generated by cvs2svn to compensate for changes in r22248, 20 years ago
NXConstStr.m This commit was generated by cvs2svn to compensate for changes in r22248, 20 years ago
Object.m Applied patch #6668 17 years ago
Protocol.m Import from gcc repository 2006-01-03 with fixups. 20 years ago
README This commit was generated by cvs2svn to compensate for changes in r22248, 20 years ago
README.GNUstep Version 1.6.0 19 years ago
README.threads Initial revision 25 years ago
THREADS This commit was generated by cvs2svn to compensate for changes in r16049, 23 years ago
THREADS.MACH Initial revision 25 years ago
acinclude.m4 Initial revision 20 years ago
aclocal.m4 This commit was generated by cvs2svn to compensate for changes in r22248, 20 years ago
archive.c change some stuff 1 year ago
class.c This commit was generated by cvs2svn to compensate for changes in r22248, 20 years ago
config.h.in This commit was generated by cvs2svn to compensate for changes in r22248, 20 years ago
configure Print help message then abort if someone tries to run configure (which they shouldn't do) 19 years ago
configure.ac Initial revision 20 years ago
encoding.c Revert change ... leave objc_skip_offset() buggy for code which depends on that behavior. It's better just to avoid using it anywhere else. 16 years ago
exception.c Initial revision 20 years ago
fdl.texi Initial revision 25 years ago
gc.c Updated/synced with latest GCC's libobjc 19 years ago
get-runtime-info Version 1.2.2 24 years ago
gnustep-objc.spec.in Initial update 25 years ago
hash.c Import from gcc repository 2006-01-03 with fixups. 20 years ago
init.c Fix incorrect format specifier in debug printf statement. 15 years ago
libobjc.def Import from gcc repository 2006-01-03 with fixups. 20 years ago
libobjc_entry.c This commit was generated by cvs2svn to compensate for changes in r22248, 20 years ago
linking.m Import from gcc repository 2006-01-03 with fixups. 20 years ago
makefile.dos This commit was generated by cvs2svn to compensate for changes in r22248, 20 years ago
misc.c 2006-02-24 Jeremy Bettis <jeremy@deadbeef.com> 20 years ago
nil_method.c This commit was generated by cvs2svn to compensate for changes in r22248, 20 years ago
objc-features.texi Initial revision 25 years ago
objects.c This commit was generated by cvs2svn to compensate for changes in r22248, 20 years ago
sarray.c Import from gcc repository 2006-01-03 with fixups. 20 years ago
selector.c Import from gcc repository 2006-01-03 with fixups. 20 years ago
sendmsg.c apple compatibility fix 15 years ago
synchronization.m Updated sync logic and added header. 17 years ago
tconfig.h change some stuff 1 year ago
thr-dce.c This commit was generated by cvs2svn to compensate for changes in r22248, 20 years ago
thr-decosf1.c This commit was generated by cvs2svn to compensate for changes in r22248, 20 years ago
thr-irix.c This commit was generated by cvs2svn to compensate for changes in r22248, 20 years ago
thr-mach.c Import from gcc repository 2006-01-03 with fixups. 20 years ago
thr-objc.c Updated/synced with latest GCC's libobjc 19 years ago
thr-os2.c This commit was generated by cvs2svn to compensate for changes in r22248, 20 years ago
thr-posix.c Replace dubious casts in libobjc, which can break pointer aliasing 15 years ago
thr-pthreads.c Add better forwarding code and fix for thread memory leak 19 years ago
thr-rtems.c This commit was generated by cvs2svn to compensate for changes in r22248, 20 years ago
thr-single.c This commit was generated by cvs2svn to compensate for changes in r22248, 20 years ago
thr-solaris.c This commit was generated by cvs2svn to compensate for changes in r22248, 20 years ago
thr-vxworks.c This commit was generated by cvs2svn to compensate for changes in r22248, 20 years ago
thr-win32.c Applied patch #6668 17 years ago
thr.c Applied patch #6668 17 years ago

README

GNU Objective C notes
*********************

This document is to explain what has been done, and a little about how
specific features differ from other implementations.  The runtime has
been completely rewritten in gcc 2.4.  The earlier runtime had several
severe bugs and was rather incomplete.  The compiler has had several
new features added as well.

This is not documentation for Objective C, it is usable to someone
who knows Objective C from somewhere else.


Runtime API functions
=====================

The runtime is modeled after the NeXT Objective C runtime.  That is,
most functions have semantics as it is known from the NeXT.  The
names, however, have changed.  All runtime API functions have names
of lowercase letters and underscores as opposed to the
`traditional' mixed case names.  
	The runtime api functions are not documented as of now.
Someone offered to write it, and did it, but we were not allowed to
use it by his university (Very sad story).  We have started writing
the documentation over again.  This will be announced in appropriate
places when it becomes available.


Protocols
=========

Protocols are now fully supported.  The semantics is exactly as on the
NeXT.  There is a flag to specify how protocols should be typechecked
when adopted to classes.  The normal typechecker requires that all
methods in a given protocol must be implemented in the class that
adopts it -- it is not enough to inherit them.  The flag
`-Wno-protocol' causes it to allow inherited methods, while
`-Wprotocols' is the default which requires them defined.


+load
===========
This method, if defined, is called for each class and category
implementation when the class is loaded into the runtime.  This method
is not inherited, and is thus not called for a subclass that doesn't
define it itself.  Thus, each +load method is called exactly once by
the runtime.  The runtime invocation of this method is thread safe.


+initialize 
===========

This method, if defined, is called before any other instance or class
methods of that particular class.  For the GNU runtime, this method is 
not inherited, and is thus not called as initializer for a subclass that 
doesn't define it itself.  Thus, each +initialize method is called exactly 
once by the runtime (or never if no methods of that particular class is 
never called).  It is wise to guard against multiple invocations anyway 
to remain portable with the NeXT runtime.  The runtime invocation of 
this method is thread safe.


Passivation/Activation/Typedstreams
===================================

This is supported in the style of NeXT TypedStream's.  Consult the
headerfile Typedstreams.h for api functions.  I (Kresten) have
rewritten it in Objective C, but this implementation is not part of
2.4, it is available from the GNU Objective C prerelease archive. 
   There is one difference worth noting concerning objects stored with
objc_write_object_reference (aka NXWriteObjectReference).  When these
are read back in, their object is not guaranteed to be available until
the `-awake' method is called in the object that requests that object.
To objc_read_object you must pass a pointer to an id, which is valid
after exit from the function calling it (like e.g. an instance
variable).  In general, you should not use objects read in until the
-awake method is called.


Acknowledgements
================

The GNU Objective C team: Geoffrey Knauth <gsk@marble.com> (manager),
Tom Wood <wood@next.com> (compiler) and Kresten Krab Thorup
<krab@iesd.auc.dk> (runtime) would like to thank a some people for
participating in the development of the present GNU Objective C.

Paul Burchard <burchard@geom.umn.edu> and Andrew McCallum
<mccallum@cs.rochester.edu> has been very helpful debugging the
runtime.   Eric Herring <herring@iesd.auc.dk> has been very helpful
cleaning up after the documentation-copyright disaster and is now
helping with the new documentation.

Steve Naroff <snaroff@next.com> and Richard Stallman
<rms@gnu.ai.mit.edu> has been very helpful with implementation details
in the compiler.


Bug Reports
===========

Please read the section `Submitting Bugreports' of the gcc manual
before you submit any bugs.