From mboxrd@z Thu Jan 1 00:00:00 1970 From: "jerryc@innerpeace.org" Subject: Re: compiler for ELKS programs Date: Mon, 20 Jan 2003 06:48:10 -0500 Sender: linux-8086-owner@vger.kernel.org Message-ID: <3E2BE1FA.7050306@innerpeace.org> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Return-path: List-Id: Content-Type: text/plain; charset="us-ascii"; format="flowed" To: linux-8086@vger.kernel.org Thank you Paul and Neil, Based upon that, I should be able to find the coding style requirements (old style, ANSI, etc) for bcc in the documentation. Any other suggestions as we progress on this project would be appreciated. Probably the thing that would be most helpful soon would be some links or names of good sample code of programs that already use curses or ncurses for 80 x 25 text screens, particularly ones that scroll both up and down. If anybody has ideas for anything other than C using curses/ncurses, now would be a good time to hear them, too, before we get too commited to that solution. Yours in peace, Jerry Paul Nasrat wrote: > On Sun, Jan 19, 2003 at 10:21:53PM -0500, jerryc@innerpeace.org wrote: > Jerry > >>I've read that page over several times, and there was some info about >>compiling ELKS itself. However, if it does say what to use to compile > > > Dev86 (which may be installed on your linux box already rpm -q dev86 on > a rpm derived distro, linux86 on a debian one) contains a > compiler called bcc. > > So if you have a simple c program like a Hello World. Named hello.c > > #include > > main() > { > printf ("Hello, World!\n"); > } > > Under linux run: > > bcc -o hello hello.c > > This will produce a file called hello which is > > file hello > hello: Linux-8086 executable not stripped > > You should then be able to run this in your elks environment of choice. > > Hth > > Paul > - > To unsubscribe from this list: send the line "unsubscribe linux-8086" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html >