Skip to content

Commit

Permalink
latest from CODA-OSS
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Smith committed Dec 28, 2023
1 parent 5eec22c commit 1ccbced
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
14 changes: 9 additions & 5 deletions externals/coda-oss/cmake/CodaBuild.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -147,11 +147,15 @@ macro(coda_initialize_build)
set(CMAKE_CXX_EXTENSIONS OFF)

# Turn on AVX2 by default ... it's from 2013.
if (NOT ENABLE_AVX512F)
if (NOT DISABLE_AVX2)
set(ENABLE_AVX2 true)
endif()
endif()
# Well, no :-( ... it seems to cause crashes w/older
# compilers on build servers. :-(
set(ENABLE_AVX2 false)
set(ENABLE_AVX512F false)
#if (NOT ENABLE_AVX512F)
# if (NOT DISABLE_AVX2)
# set(ENABLE_AVX2 true)
# endif()
#endif()

# MSVC-specific flags and options.
if (MSVC)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@
#include <stdexcept>
#include <vector>

#include "types/RowCol.h"

#include "H5_.h"
#include "SpanRC.h"

Expand Down

0 comments on commit 1ccbced

Please sign in to comment.