From: "Christopher Nelson" To: Subject: Compiling Objective - C Date: Wed, 7 Apr 1999 11:29:46 -0600 Message-ID: <01be811c$3b2991c0$LocalHost@thendren> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.71.1712.3 X-MimeOLE: Produced By Microsoft MimeOLE V4.71.1712.3 Reply-To: djgpp AT delorie DOT com Just so everyone knows, in case they had this problem, to fix the Objective-C problem that I had before i needed to: 1. modify syntax.shl in the share/rhide directory to include a set of contexts for it's highlighter engine. 2. redefine RHIDE_COMPILE_OBJC in the rhide.env file in share/rhide to the following: RHIDE_COMPILE_OBJC=$(RHIDE_GCC) $(RHIDE_INCLUDES) $(C_DEBUG_FLAGS) \ $(C_OPT_FLAGS) $(C_WARN_FLAGS) $(C_C_LANG_FLAGS) \ $(C_EXTRA_FLAGS) $(LOCAL_OPT) -c $(SOURCE_NAME) \ -o $(OUTFILE) And i have no problems. This may cause a problem, because it simply uses the settings of the C side, I'm not sure if there's an OBJC_DEBUG_FLAGS, but if there is, I ought to use that. -={C}=-