diff options
author | midipix <writeonce@midipix.org> | 2017-10-31 19:51:44 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2017-10-31 21:00:38 -0400 |
commit | 2ac66b6c892a6bb64ed1315614d73a4c6881368f (patch) | |
tree | 4e79aa103b38cc666b0278af384f935e74b9878f | |
parent | c659232e7c4c41fc66ae7947c912688a910df10f (diff) | |
download | sofort-2ac66b6c892a6bb64ed1315614d73a4c6881368f.tar.bz2 sofort-2ac66b6c892a6bb64ed1315614d73a4c6881368f.tar.xz |
build system: toolchain: added definitions for message and resource compilers.
-rw-r--r-- | sysinfo/toolchain/binutils.mk | 2 | ||||
-rw-r--r-- | sysinfo/toolchain/llvm.mk | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/sysinfo/toolchain/binutils.mk b/sysinfo/toolchain/binutils.mk index 728eb66..29917bc 100644 --- a/sysinfo/toolchain/binutils.mk +++ b/sysinfo/toolchain/binutils.mk @@ -17,3 +17,5 @@ OBJCOPY = $(CROSS_COMPILE)objcopy READELF = $(CROSS_COMPILE)readelf DLLTOOL = $(CROSS_COMPILE)dlltool MDSO = $(CROSS_COMPILE)mdso +MC = $(CROSS_COMPILE)windmc +RC = $(CROSS_COMPILE)windres diff --git a/sysinfo/toolchain/llvm.mk b/sysinfo/toolchain/llvm.mk index b863456..13b46c9 100644 --- a/sysinfo/toolchain/llvm.mk +++ b/sysinfo/toolchain/llvm.mk @@ -17,3 +17,5 @@ OBJCOPY = $(CROSS_COMPILE)objcopy READELF = $(CROSS_COMPILE)readelf DLLTOOL = $(CROSS_COMPILE)dlltool MDSO = $(CROSS_COMPILE)mdso +MC = $(CROSS_COMPILE)windmc +RC = $(CROSS_COMPILE)windres |