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
This commit is contained in:
Przemyslaw Czerpak
2025-02-01 08:37:25 +01:00
parent a9e60478a3
commit 57f11bfb89
3 changed files with 13 additions and 1 deletions

View File

@@ -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

1
config/android/clang.mk Normal file
View File

@@ -0,0 +1 @@
include $(TOP)$(ROOT)config/linux/clang.mk

View File

@@ -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