Hi,
I wish to cross check the flags passed to GCC while building a native
libarary.,
anyone know how to do it??
i'm aware of CFLAGS 'm populating, but wish to check all the flags
passed via global .mk files..
'make -d' gives dump of all steps, but still hides gcc command.,
What I normally do is add the -v flag to CC and LD. I try to put it where
gcc is defined so I sure it is not filtered out.
This will print the include paths, library paths and flags used when
compiling or linking.
On Wed, May 5, 2010 at 11:22 AM, Deva R <r.deva...@gmail.com> wrote:
> Hi,
> I wish to cross check the flags passed to GCC while building a native
> libarary.,
> anyone know how to do it??
> i'm aware of CFLAGS 'm populating, but wish to check all the flags
> passed via global .mk files..
> 'make -d' gives dump of all steps, but still hides gcc command.,
> thanks in advance.
> -Deva
> --
> You received this message because you are subscribed to the Google Groups
> "android-platform" group.
> To post to this group, send email to android-platform@googlegroups.com.
> To unsubscribe from this group, send email to
> android-platform+unsubscribe@googlegroups.com<android-platform%2Bunsubscrib e@googlegroups.com>
> .
> For more options, visit this group at
> http://groups.google.com/group/android-platform?hl=en.
On Wed, May 5, 2010 at 3:23 PM, hedwin <hedwin.kon...@gmail.com> wrote:
> What I normally do is add the -v flag to CC and LD. I try to put it where
> gcc is defined so I sure it is not filtered out.
> This will print the include paths, library paths and flags used when
> compiling or linking.
> On Wed, May 5, 2010 at 11:22 AM, Deva R <r.deva...@gmail.com> wrote:
>> Hi,
>> I wish to cross check the flags passed to GCC while building a native
>> libarary.,
>> anyone know how to do it??
>> i'm aware of CFLAGS 'm populating, but wish to check all the flags
>> passed via global .mk files..
>> 'make -d' gives dump of all steps, but still hides gcc command.,
>> thanks in advance.
>> -Deva
>> --
>> You received this message because you are subscribed to the Google Groups
>> "android-platform" group.
>> To post to this group, send email to android-platform@googlegroups.com.
>> To unsubscribe from this group, send email to
>> android-platform+unsubscribe@googlegroups.com<android-platform%2Bunsubscrib e@googlegroups.com>
>> .
>> For more options, visit this group at
>> http://groups.google.com/group/android-platform?hl=en.
To print all commands executed by make, add
showcommands as an additional goal:
make showcommands
On 5月5日, 下午5時22分, Deva R <r.deva...@gmail.com> wrote:
> Hi,
> I wish to cross check the flags passed to GCC while building a native
> libarary.,
> anyone know how to do it??
> i'm aware of CFLAGS 'm populating, but wish to check all the flags
> passed via global .mk files..
> 'make -d' gives dump of all steps, but still hides gcc command.,
On Wed, May 5, 2010 at 4:59 PM, Chih-Wei <cwhu...@linux.org.tw> wrote:
> To print all commands executed by make, add
> showcommands as an additional goal:
> make showcommands
> On 5月5日, 下午5時22分, Deva R <r.deva...@gmail.com> wrote:
>> Hi,
>> I wish to cross check the flags passed to GCC while building a native
>> libarary.,
>> anyone know how to do it??
>> i'm aware of CFLAGS 'm populating, but wish to check all the flags
>> passed via global .mk files..
>> 'make -d' gives dump of all steps, but still hides gcc command.,