POV-Ray : Newsgroups : povray.off-topic : Make it Server Time
28 Jul 2024 02:17:18 EDT (-0400)
  Make it (Message 16 to 25 of 25)  
<<< Previous 10 Messages Goto Initial 10 Messages
From: Orchid Win7 v1
Subject: Re: Make it
Date: 27 May 2016 14:10:40
Message: <57488da0$1@news.povray.org>
On 27/05/2016 07:09 PM, jr wrote:
> hi,
>
> On 27/05/2016 18:54, Orchid Win7 v1 wrote:
>> Weirdly, Make actually has implicit rules for how to make the Makefile
>> itself... If you run it in debug mode, you can see it "considering"
>> whether your Makefile is up-to-date or not.
>>
>> I have no idea what these rules *are*, mind you... Perhaps it's looking
>> for a Makefile.am to run AutoMake on or something?
>
> 'make -p' dumps default rules&  vars.   'info make' is your friend.

I don't have access to any Linux machines that have man or info 
installed. Our build process strips it to save space...


Post a reply to this message

From: Le Forgeron
Subject: Re: Make it
Date: 27 May 2016 14:58:29
Message: <574898d5$1@news.povray.org>
Le 27/05/2016 19:51, Orchid Win7 v1 a écrit :
> On 26/05/2016 08:28 PM, Le_Forgeron wrote:
>> Le 26/05/2016 20:11, Orchid Win7 v1 a écrit :
>>> I also enjoy how if you try to link an executable, it whines about unresolved
symbols, but if you link an SO file, it's NOT considered an error to have missed half
of the necessary object files... (!)
>>
>> Shared lib (.so) are allowed to be completed later by other libs, or even the
loading binary.
> 
> Presumably this requires the executable to load everything in exactly the right
order though?

One ring to rules them all.

Do not make a lib per folder, make a single lib.

Just like your meal ends up in your stomach, it will nourish you.
Later you can learn cooking and try to have separate plates, including a sweet
dessert, if the code allows such split.
But sometime code is just a spaghetti meal and nothing else.

> 
>> It's at runtime that you will get your problems.
> 
> Indeed. This is what I feared... So at some point, when the program is running, it
will suddenly segfault for no apparent reason, and it will be mathematically
impossible to ever determine why. Great.

No, symbol resolution is done at the start of the program (unless you start using
black magic for delayed resolution... you can even load a shared library later, to
resolve a symbol that came from processing some text data... but it's not for the
light hearted and is
often not portable).


Post a reply to this message

From: Le Forgeron
Subject: Re: Make it
Date: 27 May 2016 15:01:15
Message: <5748997b$1@news.povray.org>
Le 27/05/2016 19:59, Orchid Win7 v1 a écrit :
> On 27/05/2016 04:36 PM, Le_Forgeron wrote:
> 
>> Actually you can ask gcc/g++ to output the dependencies on sources files. Then you
can have them read back by "make".
> 
> Yes, this is the main thing I did.
> 
> Originally, the Makefile had one entry for every source file in the entire project,
some (but not all) listing the header files they depend on. (Hey, at least the exact
compilation command was a variable!)
> 
> I replaced that with a rule that says how to build any object file from a source
file. That crunched the file size down to a fraction of its former self. I also made
G++ spit out dependency information that then gets included back into the Makefile.
Our CI server probably
> won't care, but it'll help the next poor sod who tries to build it by hand.
> 
> Finally, I wrote some crazy Make macro [yes, Make has macros] that generates a list
of all the object files in a folder. Before they exist. So that I can depend on them.
> 
> ...and then I did it all over again, since apparently SO files have to be built with
-fPIC, whatever that does...

you can build .so and .a with the same .o (as -fPIC is not a problem for .a), one
compilation, two forms of library, if you really need them.


Post a reply to this message

From: dick balaska
Subject: Re: Make it
Date: 27 May 2016 17:42:21
Message: <5748bf3d$1@news.povray.org>
Am 2016-05-27 13:56, also sprach Orchid Win7 v1:

> (I want to find the person who decided to use tabs as part of the
> language syntax and BEAT HIM TO DEATH! >_< My text editor is rightly
> configured to strip all tabs and turn them to spaces, but then noooo...
> As soon as you want to edit a Makefile, you have to turn that off.)

And my editor is rightly configured for tabs to be preserved at 4 spaces.
Which means we can't co-mingle python code either.
-- 
dik


Post a reply to this message

From: dick balaska
Subject: Re: Make it
Date: 27 May 2016 17:44:48
Message: <5748bfd0$1@news.povray.org>
Am 2016-05-27 14:10, also sprach Orchid Win7 v1:

> I don't have access to any Linux machines that have man or info
> installed. Our build process strips it to save space...

wow. that's ... poor.

-- 
dik


Post a reply to this message

From: clipka
Subject: Re: Make it
Date: 27 May 2016 20:12:35
Message: <5748e273$1@news.povray.org>
Am 27.05.2016 um 15:23 schrieb scott:
>>>> I can't believe I've just spent an entire day writing Makefiles... At
>>>> this rate, it would almost be simpler to just write a loop to compile
>>>> every source file in every directory and then link them all! But, alas,
>>>> it turns out that you have to actually link them in the right order, or
>>>> it doesn't work.
>>>
>>> Isn't there some tool to do that automatically?
>>
>> Absolutely. It is called "make", and needs a Makefile to work ;)
> 
> Oh, what you can use make to make a makefile? Sounds like some IOCCC
> entry...

Ah, I thought you meant the "write a loop to compile every source
file..." part.

Yeah, there are tools out there that automate makefile making. Automake
is one of them.

In a nutshell, it boils down to writing a convoluted Automake script to
avoid writing a convoluted Makefile.

On the upside, you don't have to worry about tab characters anymore. Yay!


Post a reply to this message

From: Orchid Win7 v1
Subject: Re: Make it
Date: 28 May 2016 03:53:30
Message: <57494e7a@news.povray.org>
On 27/05/2016 10:44 PM, dick balaska wrote:
> Am 2016-05-27 14:10, also sprach Orchid Win7 v1:
>
>> I don't have access to any Linux machines that have man or info
>> installed. Our build process strips it to save space...
>
> wow. that's ... poor.

Well, it's a kiosk Linux system. It's designed to run one application. 
What do you need manpages for?

On the one hand, you can always look it up on the Internet. On the other 
hand, the manpage you read in the Internet may or may not match the 
version of the tool you actually have installed. :-P

Also: Certain commands are not safe for Google.

    "man cp"     That's fine
    "man cron"   Also fine.
    "man kill"   Less fine.
    "man bash"   Be careful.
    "man head"   Caution.
    "man tail"   Er...
    "man trap"   Abort! Abort!
    "man mount"  >_<


Post a reply to this message

From: Orchid Win7 v1
Subject: Re: Make it
Date: 28 May 2016 03:54:01
Message: <57494e99$1@news.povray.org>
On 28/05/2016 01:12 AM, clipka wrote:
> In a nutshell, it boils down to writing a convoluted Automake script to
> avoid writing a convoluted Makefile.
>
> On the upside, you don't have to worry about tab characters anymore. Yay!

This made me smile.


Post a reply to this message

From: jr
Subject: Re: Make it
Date: 28 May 2016 06:55:16
Message: <57497914$1@news.povray.org>
hi,

On 28/05/2016 08:53, Orchid Win7 v1 wrote:
> On the one hand, you can always look it up on the Internet. ...

> Also: Certain commands are not safe for Google.
> 
>    "man cp"     That's fine
>    "man cron"   Also fine.
>    "man kill"   Less fine.
>    "man bash"   Be careful.
>    "man head"   Caution.
>    "man tail"   Er...
>    "man trap"   Abort! Abort!
>    "man mount"  >_<


no need to take "risks".  there's "The Linux Documentation Project"
(http://tldp.org) which has man pages and much else besides.  also, for
actual GNU softwares, I'd use their site to get to the docs.

jr.


Post a reply to this message

From: Orchid Win7 v1
Subject: Re: Make it
Date: 28 May 2016 07:44:33
Message: <574984a1$1@news.povray.org>
On 28/05/2016 11:54 AM, jr wrote:
> hi,
>
> On 28/05/2016 08:53, Orchid Win7 v1 wrote:
>> On the one hand, you can always look it up on the Internet. ...
>
>> Also: Certain commands are not safe for Google.
>>
>>     "man cp"     That's fine
>>     "man cron"   Also fine.
>>     "man kill"   Less fine.
>>     "man bash"   Be careful.
>>     "man head"   Caution.
>>     "man tail"   Er...
>>     "man trap"   Abort! Abort!
>>     "man mount">_<
>
>
> no need to take "risks".  there's "The Linux Documentation Project"
> (http://tldp.org) which has man pages and much else besides.  also, for
> actual GNU softwares, I'd use their site to get to the docs.

I like to use http://linux.die.net/man/

Many sites host manpages, but the text is all mangled. This seems to be 
one of the few that has legible text. And it's nicely searchable.

OTOH, there's again no guarantee that the version listed here matches 
what OpenSUSE happens to provide.


Post a reply to this message

<<< Previous 10 Messages Goto Initial 10 Messages

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