| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
| |
$ sed -i '' 's/min=16/min=17/' x11-wm/hyprland/Makefile
$ make clean all -C x11-wm/hyprland
[...]
CMake Error at /usr/local/share/cmake/Modules/CMakeDetermineCCompiler.cmake:49 (message):
Could not find compiler set in environment variable CC:
/usr/local/llvm/bin/clang.
Call Stack (most recent call first):
CMakeLists.txt
|
|
|
|
|
| |
Reviewed by: bofh
Differential Revision: https://reviews.freebsd.org/D37747
|
|
|
|
|
|
|
|
| |
As of commit 21778d8958f518e2179b1053d75cfb6c71405558 these are no
longer valid options
PR: 269005
Reviewed by: portmgr (tcberner)
|
|
|
|
|
|
|
|
|
|
|
|
| |
$ sed -i '' 's/min=14/min=16/' emulators/yuzu/Makefile
$ make clean all -C emulators/yuzu
[...]
CMake Error at /usr/local/share/cmake/Modules/CMakeDetermineCCompiler.cmake:49 (message):
Could not find compiler set in environment variable CC:
clang16.
Call Stack (most recent call first):
CMakeLists.txt
|
|
|
|
|
|
|
|
| |
This should fix an issue where
USES=llvm:min=13
would not set _LLVM_MK_CONSTRAINT_min to 13.
Reported by: adamw
|
|
|
|
|
|
|
| |
Previously it contained a copy-and-pasted unedited line for step 3).
Switch to the better documentation copied from CHANGES.
Reported by: arrowd
|
| |
|
|
USES=llvm supports two kinds of arguments:
* mode
<none>: defaults to build
build: add a BUILD_DEPENDS on chosen llvm-port
run: add a RUN_DEPENDS on chosen llvm-port
lib: add a LIB_DEPENDS on chosen llvm-port
* version
<none>: defaults to ${LLVM_DEFAULT}
number: use explicitly the specified version
min=number: use specified min if ${LLVM_DEFAULT} is lower
max=number: use specified max if ${LLVM_DEFAULT} is higher
An example usage might be:
USES= llvm
or
USES= llvm:13,build
or
USES= llvm:min=14,lib
The following variables are exposed to be used in the ports tree at the moment:
* LLVM_VERSION version chosen from the arguments to llvm.mk
* LLVM_PORT chosen llvm port
* LLVM_CONFIG llvm-config of the chosen port
* LLVM_LIBLLVM libLLVM.so of the chosen port
* LLVM_PREFIX installation prefix of the chosen port
Reviewed by: manu, bapt
Differential Revision: https://reviews.freebsd.org/D37728
|