Purebasic 6 command line

Windows specific forum
MushroomHead
User
User
Posts: 15
Joined: Wed Apr 27, 2005 2:55 pm

Purebasic 6 command line

Post by MushroomHead »

Hello,

Apologies if I posted this in the wrong forum. I am using Purebasic 6 beta 4 compiler, I would like to know if it's possible to dump out the full command lines (i.e. options) the C backend is passing to gcc and linker? Thanks
User avatar
ChrisR
Addict
Addict
Posts: 1150
Joined: Sun Jan 08, 2017 10:27 pm
Location: France

Re: Purebasic 6 command line

Post by ChrisR »

MushroomHead
User
User
Posts: 15
Joined: Wed Apr 27, 2005 2:55 pm

Re: Purebasic 6 command line

Post by MushroomHead »

Cheers, I'll take a look at it.
Bitblazer
Enthusiast
Enthusiast
Posts: 736
Joined: Mon Apr 10, 2017 6:17 pm
Location: Germany
Contact:

Re: Purebasic 6 command line

Post by Bitblazer »

You could always find out which tools are actually called, for example with WinAPIOverride and then replace any of them with your own tool, rename the original with an appended underscore. Your own tool logs all command parameters and calls the original tool with these parameters. That way, you can also manipulate the parameters as you wish.
Post Reply