# # This file and its contents are supplied under the terms of the # Common Development and Distribution License ("CDDL"), version 1.0. # You may only use this file in accordance with the terms of version # 1.0 of the CDDL. # # A full copy of the text of the CDDL should have accompanied this # source. A copy of the CDDL is also available via the Internet at # http://www.illumos.org/license/CDDL. # # # Copyright 2016 Aurelien Larcher. All rights reserved. # Copyright 2019 Alexander Pyhalov # Copyright 2019 Michal Nowak # Copyright 2019 Till Wegmüller # Copyright 2022 Klaus Ziegler # Copyright 2024,2025 Friedrich Kink # BUILD_STYLE= cmake USE_PARALLEL_BUILD= yes include ../../../make-rules/shared-macros.mk COMPONENT_NAME= clang COMPONENT_VERSION= 20.1.8 CLANG_VERSION= $(firstword $(subst ., ,$(COMPONENT_VERSION))) COMPONENT_SUMMARY= LLVM tools and Clang compiler COMPONENT_PROJECT_URL= https://llvm.org/ COMPONENT_SRC= $(LLVM_NAME)-$(COMPONENT_VERSION).src COMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.xz COMPONENT_ARCHIVE_HASH= sha256:e1363888216b455184dbb8a74a347bf5612f56a3f982369e1cba6c7e0726cde1 COMPONENT_ARCHIVE_URL= https://github.com/llvm/llvm-project/releases/download/llvmorg-$(COMPONENT_VERSION)/$(COMPONENT_ARCHIVE) COMPONENT_FMRI= $(CLANG_DEVELOPER_PKG) COMPONENT_CLASSIFICATION= Development/C COMPONENT_LICENSE= BSD COMPONENT_LICENSE_FILE= LICENSE.TXT COMPONENT_FMRI.clang-runtime = $(CLANG_RUNTIME_PKG) LLVM_NAME= llvm CLANG_NAME= clang COMPONENT_ARCHIVE_1= $(CLANG_NAME)-$(COMPONENT_VERSION).src.tar.xz COMPONENT_ARCHIVE_HASH_1= sha256:b7a1b7b0af7b9c7596af6bd46e36d11321926eaa66a7a7dc957ab0a1375ee4b0 COMPONENT_ARCHIVE_URL_1=https://github.com/llvm/llvm-project/releases/download/llvmorg-$(COMPONENT_VERSION)/$(COMPONENT_ARCHIVE_1) COMPONENT_ARCHIVE_2= cmake-$(COMPONENT_VERSION).src.tar.xz COMPONENT_ARCHIVE_HASH_2= sha256:3319203cfd1172bbac50f06fa68e318af84dcb5d65353310c0586354069d6634 COMPONENT_ARCHIVE_URL_2=https://github.com/llvm/llvm-project/releases/download/llvmorg-$(COMPONENT_VERSION)/$(COMPONENT_ARCHIVE_2) COMPONENT_ARCHIVE_3= third-party-$(COMPONENT_VERSION).src.tar.xz COMPONENT_ARCHIVE_HASH_3= sha256:9a4e452a8163732d417db067a89190fcda823cb3aa33199e834ac7c028923f4b COMPONENT_ARCHIVE_URL_3=https://github.com/llvm/llvm-project/releases/download/llvmorg-$(COMPONENT_VERSION)/$(COMPONENT_ARCHIVE_3) include $(WS_MAKE_RULES)/common.mk CMAKE_PREFIX = $(CLANG_PREFIX) COMPONENT_POST_UNPACK_ACTION += \ $(UNPACK) $(USERLAND_ARCHIVES)$(COMPONENT_ARCHIVE_1) && \ $(MV) $(CLANG_NAME)-$(COMPONENT_VERSION).src $(COMPONENT_SRC)/tools/clang && \ $(UNPACK) $(USERLAND_ARCHIVES)$(COMPONENT_ARCHIVE_2) && \ $(MV) cmake-$(COMPONENT_VERSION).src/Modules $(COMPONENT_SRC)/cmake/ && \ $(RM) -r cmake-$(COMPONENT_VERSION).src && \ $(UNPACK) $(USERLAND_ARCHIVES)$(COMPONENT_ARCHIVE_3) && \ $(MKDIR) $(COMPONENT_SRC)/third-party && \ $(MV) third-party-$(COMPONENT_VERSION).src/unittest $(COMPONENT_SRC)/third-party && \ $(MV) third-party-$(COMPONENT_VERSION).src/benchmark $(COMPONENT_SRC)/third-party && \ $(RM) -r third-party-$(COMPONENT_VERSION).src # all *.exports files seem to be considered as mapfile (-Wl,-Mbla.exports) but there is not any # logic in those files which would qualify them as mapfiles so I just nulled them # according to documentation of mapfiles they serve anyway only as optimization to the link process # and all generated code is supposed to work without this optimization COMPONENT_PRE_CONFIGURE_ACTION = ( $(CLONEY) $(SOURCE_DIR) $(@D); \ find $(COMPONENT_SRC) -name \*.exports -exec cp /dev/null {} \; ; ) COMPONENT_POST_INSTALL_ACTION = \ for file in `echo $(PROTO_DIR)/$(CMAKE_PREFIX)/bin/*`; do \ $(ELFEDIT) -e 'dyn:runpath $(GCC_LIBDIR):$(CMAKE_PREFIX)/lib' $$file ; \ done && \ for file in \ `ggrep -rlh '^\#!*/usr/bin/env python' $(PROTO_DIR)/$(CMAKE_PREFIX)`; do \ sed -i -e 's:\#!/usr/bin/env.*:\#!$(PYTHON):' $$file; \ done CMAKE_OPTIONS += -DCMAKE_C_COMPILER=$(CC) CMAKE_OPTIONS += -DCMAKE_CXX_COMPILER=$(CXX) CMAKE_OPTIONS += -DCMAKE_CXX_LINK_FLAGS="-L$(GCC_LIBDIR) -Wl,-rpath,$(GCC_LIBDIR)" CMAKE_OPTIONS += -DCMAKE_BUILD_TYPE=Release CMAKE_OPTIONS += -DCLANG_DEFAULT_LINKER="/usr/bin/ld" CMAKE_OPTIONS += -DLLVM_PARALLEL_LINK_JOBS=1 CMAKE_OPTIONS += -DLLVM_ENABLE_EH=ON CMAKE_OPTIONS += -DLLVM_ENABLE_RTTI=ON CMAKE_OPTIONS += -DLLVM_LINK_LLVM_DYLIB=ON CMAKE_OPTIONS += -DLLVM_INCLUDE_BENCHMARKS=OFF CMAKE_OPTIONS += -DLLVM_INSTALL_UTILS=ON CMAKE_OPTIONS += -DCLANG_DEFAULT_RTLIB=libgcc CMAKE_OPTIONS += -DCLANG_DEFAULT_CXX_STDLIB=libstdc++ CMAKE_OPTIONS += -DPYTHON_EXECUTABLE="$(PYTHON)" CMAKE_OPTIONS += -DCMAKE_MODULE_PATH="$(SOURCE_DIR)/$(COMPONENT_SRC)/cmake/Modules" COMPONENT_TEST_CMD = $(GMAKE) COMPONENT_TEST_ARGS = $(COMPONENT_BUILD_GMAKE_ARGS) COMPONENT_TEST_TARGETS = check-all COMPONENT_TEST_ENV += PATH=$(PATH.gnu) # Do not change the order of these regexp transforms. COMPONENT_TEST_TRANSFORMS += \ '-e "/^Testing Time: .*$$/d" ' \ '-e "/^make.*$$/d" ' \ '-e "/^Failed Tests /,/Unexpected Passed:/p" ' \ '-e "" ' \ '-e "/.*/d" ' TESTSUITE_MAKE = $(GMAKE) # Python modules are installed in non-default locations so make sure pkgdepend # is able to find them PKGDEPEND_RUNPATH += $(CLANG_LIBDIR) PKGDEPEND_RUNPATH += $(CLANG_PREFIX)/share/scan-view/ # Auto-generated dependencies PYTHON_REQUIRED_PACKAGES += runtime/python REQUIRED_PACKAGES += $(GCC_RUNTIME_PKG) REQUIRED_PACKAGES += $(GXX_RUNTIME_PKG) REQUIRED_PACKAGES += SUNWcs REQUIRED_PACKAGES += compress/zstd REQUIRED_PACKAGES += library/libedit REQUIRED_PACKAGES += library/libxml2 REQUIRED_PACKAGES += library/zlib REQUIRED_PACKAGES += system/library REQUIRED_PACKAGES += system/library/math