I use boost-build to run cross-compiler. Although I'm compiling on Windows I want to build executable with .txe extension, not exe. How to set boost-build to achieve it?
--
Best Regards, Piotr Jachowicz
Re: Change executable suffix
exe->txe
2007-03-02 10:49:54
Piotr Jachowicz wrote:
> Hello,
>
> I use boost-build to run cross-compiler. Although I'm
compiling on
> Windows I want to build executable with .txe extension,
not exe. How
> to set boost-build to achieve it?
>
> --
> Best Regards,
> Piotr Jachowicz
Hi,
You can try this:
import type : change-generated-target-suffix ;
type.change-generated-target-suffix EXE : <os>NT :
txe ;
See this thread:
http://article.gma
ne.org/gmane.comp.lib.boost.build/14901/match=change+generat
ed+target+suffix
Since you're cross-compiling you probably want to use
<target-os>
instead of <os> though. I haven't used
<target-os> yet, so I'm not sure
what's involved.
Hope this helps
Phillip
_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost-build
a>