SHA256
1
0
forked from pool/pocl
pocl/pocl-disable-tests.diff
Ismail Dönmez e17250d6ea Accepting request 495724 from home:mnhauke:opencl:stable
- Update to 0.14
  - Support for LLVM/Clang versions 3.9 and 4.0. Version 3.9 was the first
    release to include all frontend features for OpenCL 2.0.
  - Ability to build pocl in a mode where online compilation is not
    supported to run in hosts without LLVM and binaries compiled offline
    e.g. using poclcc.
  - pocl's binary format now can contain all the necessary bits to
    execute the programs on a host without online compiler support.
  - Initial support for out-of-order execution execution of command queues.
  - It's now possible to cross-compile pocl when building an offline
    compiler build.
  - New driver api extension to support out-of-order and asynchronous
    devices/drivers.
  - Pthread and HSA drivers are now fully asynchronous.
  - CMake now the only supported build system, autotools removed.
  - LTTng tracing support
- Add patches:
  - pocl-disable-tests.diff
    - compilation errors on some tests disable tests for now
- Remove patches:
  - 0001-Fixes-357-broken-build-with-GCC-6.1.patch
    - fixed upstream

OBS-URL: https://build.opensuse.org/request/show/495724
OBS-URL: https://build.opensuse.org/package/show/science/pocl?expand=0&rev=17
2017-05-18 08:29:48 +00:00

20 lines
509 B
Diff

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 18d36e7..3c20763 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1000,10 +1000,10 @@ message(STATUS "POCLU LINK OPTS: ${POCLU_LINK_OPTIONS}")
# poclcc bin
add_subdirectory("bin")
-if (OCS_AVAILABLE)
- add_subdirectory("tests")
- add_subdirectory("examples")
-endif()
+#if (OCS_AVAILABLE)
+# add_subdirectory("tests")
+# add_subdirectory("examples")
+#endif()
add_custom_target(check COMMAND ${CMAKE_CTEST_COMMAND} ${COMMAND_USES_TERMINAL})