POV-Ray : Newsgroups : povray.programming : Compiling with BCC Server Time
28 Jul 2024 10:29:44 EDT (-0400)
  Compiling with BCC (Message 1 to 9 of 9)  
From: Tony[B]
Subject: Compiling with BCC
Date: 30 Sep 2002 00:38:47
Message: <3d97d557$1@news.povray.org>
Hello everybody.

    I hate to ask "stupid" or "obvious" questions, but I have to admit that
I'm anywhere near as quick or perceptive as most of you out there. I was
just wondering which file to download, and what the general procedure is for
compiling POV 3.5 with the free Borland compiler. I would like to get my
hands dirty and pull out wires and stick in new stuff and all that, but
first I have to get a working compile, so any help in this regards would be
greatly appreciated. I am studying Computer Science after all, and I have a
lot to learn. Knowing the programmers behind POV, I know I'll learn a lot,
so please help me. (And be patient if I don't get it.) Thanks!

--
Anthony Bennett


Post a reply to this message

From: ABX
Subject: Re: Compiling with BCC
Date: 30 Sep 2002 02:42:43
Message: <d4sfpug49j2lt52akq49jttha9ncpn1bvp@4ax.com>
On Mon, 30 Sep 2002 00:38:46 -0400, "Tony[B]" <ben### [at] catholicorg> wrote:
> I hate to ask "stupid" or "obvious" questions, but I have to admit that
> I'm anywhere near as quick or perceptive as most of you out there. I was
> just wondering which file to download, and what the general procedure is for
> compiling POV 3.5 with the free Borland compiler.

I have problems with it too. I don't remember what was wrong exactly - I
started to compile with cygwin and djgpp becouse of Borland's errors. I still
plan to force Borland compiler to work so tell me if you could start it (and
how). I'm trying to setup multitarget enviroment on my hardrive - unix, dos
and windows - based on the same set of files.

> I would like to get my
> hands dirty and pull out wires and stick in new stuff and all that, but
> first I have to get a working compile, so any help in this regards would be
> greatly appreciated.

I think DJGPP is much easier to setup, more resources online, familiar zip
picker for download and it base on GCC so larger community to help.

ABX


Post a reply to this message

From: Vahur Krouverk
Subject: Re: Compiling with BCC
Date: 30 Sep 2002 13:26:48
Message: <3D988A16.1090509@comtrade.ee>
Look into thread 'free borland' from 2001-04-17. Although  it contains 
tips for compiling MegaPOV with bcc, perhaps you get some help from it. 
Or alternatively, I _hope_ to get some time at this weekend and finally 
download 3.5 source and make leap to 3.5 in source code level. If I 
succeed, then I try to create guide for it and post here.

Vahur


Post a reply to this message

From: Tony[B]
Subject: Re: Compiling with BCC
Date: 1 Oct 2002 20:01:12
Message: <3d9a3748$1@news.povray.org>
Thank you very much Vahur. I'd appreciate it if you would write up a guide.
:)

--
Anthony Bennett

PS: Thanks to ABX too.


Post a reply to this message

From: Peter Popov
Subject: Re: Compiling with BCC
Date: 3 Oct 2002 12:48:34
Message: <mvsopusokekoerlef92o5geonnohn5f5gu@4ax.com>
On Mon, 30 Sep 2002 00:38:46 -0400, "Tony[B]" <ben### [at] catholicorg>
wrote:

>I was
>just wondering which file to download, and what the general procedure is for
>compiling POV 3.5 with the free Borland compiler.

From what I've seen, the component which is going to give you the most
headaches is Borland Make. it does not support implicit rules and you
would have to replace all implicit rules with explicit ones yourself.
Don't quote me on that, though, as I haven't gotten my hands dirty
myself - that's what I could figure out from my brother's cursing
while he was trying to port something to Borland's compiler.


Peter Popov ICQ : 15002700
Personal e-mail : pet### [at] vipbg
TAG      e-mail : pet### [at] tagpovrayorg


Post a reply to this message

From: W&#322;odzimierz ABX Skiba
Subject: Re: Compiling with BCC
Date: 3 Oct 2002 13:05:07
Message: <web.3d9c783285ec721c6383743d0@news.povray.org>
Vahur Krouverk wrote:
> Look into thread 'free borland' from 2001-04-17. Although  it contains
> tips for compiling MegaPOV with bcc, perhaps you get some help from it.
> Or alternatively, I _hope_ to get some time at this weekend and finally
> download 3.5 source and make leap to 3.5 in source code level. If I
> succeed, then I try to create guide for it and post here.

Could be great. I have already made MegaPOV compilation with free BCC
following tips from mentioned thread. But it could not help me with 3.5
compilation :-( I think it can be some STL problem. Free Borland is not new
and it can be limited version. Is STL necessary to compile 3.5, isn't it? I
think it is not fully supported in free Borland:
http://www-europe.sgi.com/tech/stl/FAQ.html

ABX


Post a reply to this message

From: Vahur Krouverk
Subject: Re: Compiling with BCC
Date: 3 Oct 2002 18:22:19
Message: <3D9CC3E4.8050304@starman.ee>
Check it out in povray.binaries.utilities:
news://news.povray.org:119/3D9CC349.8080502@starman.ee

Vahur


Post a reply to this message

From: Vahur Krouverk
Subject: Re: Compiling with BCC
Date: 3 Oct 2002 18:27:45
Message: <3D9CC529.2060308@starman.ee>
Peter Popov wrote:
> From what I've seen, the component which is going to give you the most
> headaches is Borland Make. it does not support implicit rules and you
> would have to replace all implicit rules with explicit ones yourself.
> Don't quote me on that, though, as I haven't gotten my hands dirty
> myself - that's what I could figure out from my brother's cursing
> while he was trying to port something to Borland's compiler.

This 'it does not support implicit rules' is not true, for I just hacked 
together makefile, which uses implicit rules :-) But Borland's 
imagination of makefile is somewhat different from MS. Or is it vice versa?


Post a reply to this message

From: Peter Popov
Subject: Re: Compiling with BCC
Date: 4 Oct 2002 09:00:51
Message: <t44rpusqjmmcdo648dhkc05b8e99cod0uc@4ax.com>
On Fri, 04 Oct 2002 01:31:05 +0300, Vahur Krouverk
<vkr### [at] starmanee> wrote:

>This 'it does not support implicit rules' is not true, for I just hacked 
>together makefile, which uses implicit rules :-) But Borland's 
>imagination of makefile is somewhat different from MS. Or is it vice versa?

Glad to hear that, and glad to see you've brought Borland to their
knees finally :)


Peter Popov ICQ : 15002700
Personal e-mail : pet### [at] vipbg
TAG      e-mail : pet### [at] tagpovrayorg


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.