Is there a way to automatically lookup the standardized target namings such as i686-pc-linux-gnu
I typically want to feed as argument to the configure flag --exec-prefix
in platform-specific builds? I've seen ./configure && make && make install
s automatically install stuff in $PREFIX/i686-pc-linux-gnu
without specifying --exec-prefix
so some automated naming logic must exist under hood in autoconf.
Asked
Active
Viewed 135 times
0

Nordlöw
- 11,838
- 10
- 52
- 99
-
1Are you looking for `config.guess`? – William Pursell Sep 20 '12 at 16:17
-
Yep, that's it. I'm reposting this as an answer. Thanks. – Nordlöw Sep 20 '12 at 19:52