From 57f11bfb89c6ae537de32505ff0f4e3a5a8ba1ce Mon Sep 17 00:00:00 2001 From: Przemyslaw Czerpak Date: Sat, 1 Feb 2025 08:37:25 +0100 Subject: [PATCH] 2025-02-01 08:37 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl) + config/android/clang.mk + allow to create android builds with CLANG * config/common/watcom.mk ! fixed C compilation in sh like shells --- ChangeLog.txt | 7 +++++++ config/android/clang.mk | 1 + config/common/watcom.mk | 6 +++++- 3 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 config/android/clang.mk diff --git a/ChangeLog.txt b/ChangeLog.txt index 16e8122060..ad53609a69 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -7,6 +7,13 @@ Entries may not always be in chronological/commit order. See license at the end of file. */ +2025-02-01 08:37 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl) + + config/android/clang.mk + + allow to create android builds with CLANG + + * config/common/watcom.mk + ! fixed C compilation in sh like shells + 2025-01-30 19:59 UTC+0100 Aleksander Czajczynski (hb fki.pl) * utils/hbmk2/hbmk2.prg ! issue #379 follow-up to OpenWatcom target platform diff --git a/config/android/clang.mk b/config/android/clang.mk new file mode 100644 index 0000000000..6fd1b813ee --- /dev/null +++ b/config/android/clang.mk @@ -0,0 +1 @@ +include $(TOP)$(ROOT)config/linux/clang.mk diff --git a/config/common/watcom.mk b/config/common/watcom.mk index 80ed71a615..8dfdf3db75 100644 --- a/config/common/watcom.mk +++ b/config/common/watcom.mk @@ -71,7 +71,11 @@ endif ifneq ($(findstring wcc386,$(CC)),) ifneq ($(HB_HOST_PLAT),linux) CC_DIRSEPFROM := / - CC_DIRSEPTO := $(subst /,\,\) + ifeq ($(HB_SHELL),sh) + CC_DIRSEPTO := $(subst /,\,\\) + else + CC_DIRSEPTO := $(subst /,\,\) + endif endif endif