Loris Caren wrote:
I've created a 68k cross gpc (from gpc20010623). I fairly quickly found that I needed RTS set functions such as_p_set_equal and haven't found them anywhere. Can anybody point me to them, or check over the stubs that I've come up with (which appear to work for sets with fewer than 32 members)?
All the set routines are in the RTS (rts/sets.pas), just like many other required routines (files, mathematical, etc.). Unless you did something strange intentionally to prevent building of the RTS, you'd have to investigate what gets wrong while building GPC. The RTS should be compiled into libgpc.a and linked into every GPC compiled program. Of course, if (for some reason) you only compile with GPC (-c) and link with gcc or ld directly, you have to mention -lgpc (and -lm) explicitly.
Frank