Operating System - Linux
1753784 Members
7264 Online
108799 Solutions
New Discussion юеВ

Re: what does target mean?

 
joyo
Occasional Contributor

what's target means

I find gcc & gdb have target such as hppa64-hp-hpux11.11 , hppa1.1-hp-hpux11.00 ,can anyone explain what's it means ? Or show me a link about it.
3 REPLIES 3
Steven E. Protter
Exalted Contributor

Re: what's target means

Shalom,

target means what platform you are compiling for. hppa64-hp-hpux11.11 is 64 bit PA-RISC

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
joyo
Occasional Contributor

Re: what's target means

I use file binary to find target. I find something output like this :
ELF-64 executable object file - PA-RISC 2.0 (LP64)
and something like that:
PA-RISC2.0 executable dynamically linked
Are they same , i means ELF-64 and PA-RISC2.0?
Dennis Handly
Acclaimed Contributor

Re: what does target mean?

>ELF-64 executable object file - PA-RISC 2.0 (LP64)

This is PA64.

>PA-RISC2.0 executable dynamically linked

This is PA32 +DA2.0.

>Are they same, I means ELF-64 and PA-RISC2.0?

It depends. Both have PA-RISC 2.0 but PA64 has ELF-64 and (LP64).
PA32 doesn't have those.