diff options
author | Tor Lillqvist <tml@iki.fi> | 2011-06-02 02:06:04 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2011-06-02 02:07:15 +0300 |
commit | 8dbe31e04b4226ea124e8e1466596632e08f52da (patch) | |
tree | 1d68d2259cb68a285cb0dc3b77326ff93ca9aa41 /idlc | |
parent | c1abc2ec9efcae4c0da96699631ae7c12f1dc5eb (diff) |
Set TARGETPLATFORM=BUILD, idlc is for the build platform
It doesn't build yet when cross-compiling, though. It needs REGLIB,
SALLIB and SALHELPERLIB, and so far these get built only for the host
platform when cross-compiling.
Need to fix that. Can't have this ad-hoc mixing of build platform
tools and host platform libs in the same OUTDIR any more. When
cross-compiling we should do a full separation of binaries for build
and host. Libraries like SALLIB are needed for both.
Diffstat (limited to 'idlc')
-rw-r--r-- | idlc/source/makefile.mk | 1 | ||||
-rw-r--r-- | idlc/source/preproc/makefile.mk | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/idlc/source/makefile.mk b/idlc/source/makefile.mk index 33a1c9de1884..9cdc5460addf 100644 --- a/idlc/source/makefile.mk +++ b/idlc/source/makefile.mk @@ -30,6 +30,7 @@ PRJ=.. PRJNAME=idlc TARGET=idlc TARGETTYPE=CUI +TARGETPLATFORM=BUILD LIBTARGET=NO ENABLE_EXCEPTIONS=TRUE diff --git a/idlc/source/preproc/makefile.mk b/idlc/source/preproc/makefile.mk index e6aa457e8b3d..8b0c723a37a7 100644 --- a/idlc/source/preproc/makefile.mk +++ b/idlc/source/preproc/makefile.mk @@ -30,6 +30,7 @@ PRJ=..$/.. PRJNAME=idlc TARGET=idlcpp TARGETTYPE=CUI +TARGETPLATFORM=BUILD # --- Settings ----------------------------------------------------- |