
* added package gptune with all its dependencies: adding py-autotune, pygmo, py-pyaml, py-autotune, py-gpy, py-lhsmdu, py-hpbandster, pagmo2, py-opentuner; modifying superlu-dist, py-scikit-optimize * adding gptune package * minor fix for macos spack test * update patch for py-scikit-optimize; update test files for gptune * fixing gptune package style error * fixing unit tests * a few changes reviewed in the PR * improved gptune package.py with a few newly added/improved dependencies * fixed a few style errors * minor fix on package name py-pyro4 * fixing more style errors * Update var/spack/repos/builtin/packages/py-scikit-optimize/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * resolved a few issues in the PR * fixing file permissions * a few minor changes * style correction * minor correction to jq package file * Update var/spack/repos/builtin/packages/py-pyro4/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * fixing a few issues in the PR * adding py-selectors34 required by py-pyro4 * improved the superlu-dist package * improved the superlu-dist package * moree changes to gptune and py-selectors34 based on the PR * Update var/spack/repos/builtin/packages/py-selectors34/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
24 lines
1.1 KiB
Diff
24 lines
1.1 KiB
Diff
diff -u c-blosc-1.16.3/CMakeLists.txt c-blosc-1.16.3.mod/CMakeLists.txt
|
|
--- c-blosc-1.16.3/CMakeLists.txt 2019-03-08 21:38:45.000000000 +0900
|
|
+++ c-blosc-1.16.3.mod/CMakeLists.txt 2019-07-08 18:47:00.660334280 +0900
|
|
@@ -197,6 +197,10 @@
|
|
set(CMAKE_MACOSX_RPATH TRUE)
|
|
endif()
|
|
|
|
+if(CMAKE_C_COMPILER_ID STREQUAL GNU)
|
|
+ # We need C99 (GNU99 more exactly)
|
|
+ SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu99")
|
|
+endif()
|
|
# Based on the target system's processor and the compiler being used,
|
|
# set build variables indicating which hardware features can be targeted
|
|
# by the compiler. Note we DO NOT check which hardware features are supported
|
|
@@ -209,8 +213,6 @@
|
|
CMAKE_SYSTEM_PROCESSOR STREQUAL amd64 OR
|
|
CMAKE_SYSTEM_PROCESSOR STREQUAL AMD64)
|
|
if(CMAKE_C_COMPILER_ID STREQUAL GNU)
|
|
- # We need C99 (GNU99 more exactly)
|
|
- SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu99")
|
|
set(COMPILER_SUPPORT_SSE2 TRUE)
|
|
if(CMAKE_C_COMPILER_VERSION VERSION_GREATER 4.7 OR CMAKE_C_COMPILER_VERSION VERSION_EQUAL 4.7)
|
|
set(COMPILER_SUPPORT_AVX2 TRUE)
|