Displaying 10 results from an estimated 10 matches for "configure_fil".
Did you mean:
configure_file
2013 Apr 01
1
[LLVMdev] llvm cmake broken or changed?
...Anyone have any ideas?
I am using Windows 7 64 and cmake and ninja and mingw.
What appears to be the relevant part of the message is below:
...
-- Clang version: 3.3
CMake Error: File
c:/llvm/tools/clang/include/clang/Basic/Version.inc.indoes not exis
CMake Error at tools/clang/CMakeLists.txt:134 (configure_file):
configure_file Problem configuring file
-- Performing Test CXX_SUPPORTS_NO_NESTED_ANON_TYPES_FLAG
-- Performing Test CXX_SUPPORTS_NO_NESTED_ANON_TYPES_FLAG - Failed
CMake Error: File c:/llvm/tools/clang/include/clang/Config/config.h.cmake
does not exi
CMake Error at tools/clang/CMakeLists.tx...
2014 Jul 18
2
[LLVMdev] Fixing LLVM's CMake interface before LLVM3.5 release
...hat should be sufficient for your example
> use case.
I've taken another look at this. For the simple example project [1]
I'm effectively doing this.
```
add_library(ReplaceGetGlobalID MODULE ReplaceGetGlobalID.cpp)
get_property(MODULE_FILE TARGET ReplaceGetGlobalID PROPERTY LOCATION)
configure_file(run.sh.in run.sh @ONLY)
```
where run.sh is a simple shell script to demonstrate how to invoke the
built library as a plug-in to the opt tool. With this CMP0026 policy
the above produces warnings.
After reading ``cmake --help-policy CMP0026`` I tried doing this instead...
```
add_library(Replac...
2019 Aug 21
2
Cannot run LLVM unit tests doe to python error in lit
Hello, LLVM community.
I've built a cross-toolchain on Windows and I'm now trying to run unit tests for the LLVM libraries.
I used Ninja as a build system and MSVC as host compiler without an issue, but when I try to run 'ninja check-llvm-unit', I get the following error:
llvm-lit.py: C:/Users/sergej/Developer/llvm-project/llvm\utils\lit\lit\TestingConfig.py:102: fatal: unable
2017 May 29
0
[PATCH] Add CMake build script
...quot;)
+ else()
+ check_include_file(sys/types.h INCLUDE_SYS_TYPES_H)
+ if(HAVE_SYS_TYPES_H)
+ set(INCLUDE_STDINT "#include <sys/types.h>")
+ endif()
+ endif()
+endif()
+set(SIZE16 int16_t)
+set(USIZE16 uint16_t)
+set(SIZE32 int32_t)
+set(USIZE32 uint32_t)
+set(SIZE64 int64_t)
+configure_file(include/speex/speex_config_types.h.in include/speex/speex_config_types.h @ONLY)
+
+test_vararrays(VAR_ARRAYS)
+if(NOT VAR_ARRAYS)
+ check_include_file(alloca.h HAVE_ALLOCA_H)
+ if(WIN32)
+ set(USE_ALLOCA 1)
+ else()
+ check_symbol_exists(alloca "stdlib.h;alloca.h" USE_ALLOCA)
+ endif(...
2019 Aug 28
0
[ANNOUNCE] libvdpau 1.3
...support decoding of the VP9
video format.
Aaron Plattner (7):
Switch the build system to Meson
Add .gitlab-ci.yml
doc: Don't use line-wrapping backslashes in \defgroup definitions
CI: Build documentation
meson: Remove unnecessary 'install' parameter from configure_file()
CI: Enable warnings as errors
Bump version to 1.3
Luca Boccassi (1):
Disable HTML timestamps
ManojGuptaBonda (1):
Add VP9 decode support in VDPAU API
git tag: 1.3
https://gitlab.freedesktop.org/vdpau/libvdpau/-/archive/1.3/libvdpau-1.3.tar.bz2
SHA256: b5a52eeac9417ed...
2014 Jul 16
5
[LLVMdev] Fixing LLVM's CMake interface before LLVM3.5 release
Hi All,
I've been playing [1] with the newly introduced CMake interface for
using exported LLVM CMake targets (e.g. the LLVMSupport library) in
CMake projects and although it works there are a few things I think we
should fix before the LLVM 3.5 release.
Here are the current issues I see that I'd like to discuss.
Just to clarify by "Targets" I mean targets in the CMake sense
2013 May 11
1
Samba git: build error when upgrading
Seeing a build problem after updating my git tree:
$ git remote -v
origin git://git.samba.org/samba.git (fetch)
origin git://git.samba.org/samba.git (push)
$ git pull
$ ./configure ...
$ make clean
WAF_MAKE=1 python ./buildtools/bin/waf build
./buildtools/wafsamba/samba_utils.py:397: DeprecationWarning: the md5 module is deprecated; use hashlib instead
2020 Mar 20
0
[ANNOUNCE] igt-gpu-tools 1.25
...eally loop through all engines
lib: Export a function for loading igtrc
runner: Add support for aborting on network failure
run-tests.sh: Use igt_runner instead of piglit by default
testdisplay: Don't double-close udev fd
meson: Remove redundant install params from configure_file
runner/resultgen: Handle empty outputs
intel-ci: Un-blacklist pipe D
runner: Produce skip instead of notrun for nonexisting tests
runner/resultgen: Refactor output parsing
runner/json_tests: Adapt to better output parsing
runner: Don't add timestamps when ca...
2020 Sep 25
20
[RFC PATCH 00/19] vhost-user-rpmb (Replay Protected Memory Block)
Hi,
This is an initial implementation of a vhost-user backend for the
VirtIO RPMB device. The device is currently in the draft of the next
VirtIO specification and describes block device which uses combination
of a key, nonce, hashing and a persistent write counter to prevent
replay attacks (hence Replay Protected Memory Block).
It is implemented as a vhost-user device because we want to
2012 Sep 17
9
[PATCH] Upgrade vtpmd to berlios version 0.7.4
...++set(TPM_LOG_FILE "/var/log/tpmd.log")
++set(TPM_SOCKET_NAME "/var/run/tpm/tpmd_socket:0")
++set(TPM_STORAGE_NAME
"/var/lib/tpm/tpm_emulator-1_2_${${PROJECT_NAME}_VERSION_MAJOR}_${${PROJECT_NAME}_VERSION_MINOR}")
++set(TPM_DEVICE_NAME "/dev/tpm")
++endif()
++configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config.h.in
${CMAKE_CURRENT_BINARY_DIR}/config.h)
++add_definitions(-Wall -Werror -Wno-unused-parameter -Wpointer-arith
-Wcast-align -Wwrite-strings)
++if("${CMAKE_SYSTEM}" MATCHES "Linux")
++ add_definitions(-Wextra)
++endif()
++if(USE_OPENSSL)
+...