Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,11 @@ blt_add_executable( NAME geosx
${extraComponentsLinkList}
${externalComponentsLinkList} )

if(APPLE)
target_link_options(geosx PRIVATE "-Wl,-export_dynamic")
endif()


# Seems to be required on some CMake versions (e.g. 3.16) to get enforce device linking
if( ${ENABLE_HYPRE_DEVICE} STREQUAL "CUDA" )
set_target_properties( geosx PROPERTIES CUDA_RESOLVE_DEVICE_SYMBOLS TRUE )
Expand Down
1 change: 1 addition & 0 deletions src/coreComponents/finiteElement/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ set( finiteElement_headers
LinearFormUtilities.hpp
PDEUtilities.hpp
elementFormulations/FiniteElementBase.hpp
elementFormulations/FiniteElementOperators.hpp
elementFormulations/H1_Hexahedron_Lagrange1_GaussLegendre2.hpp
elementFormulations/H1_Pyramid_Lagrange1_Gauss5.hpp
elementFormulations/H1_QuadrilateralFace_Lagrange1_GaussLegendre2.hpp
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ FiniteElementDiscretization::
typename FE_TYPE::StackVariables feStack;
finiteElement.template setup< FE_TYPE >( k, meshData, feStack );
real64 xLocal[numNodesPerElem][3];
localIndex numSupportPoints = finiteElement.template numSupportPoints< FE_TYPE >( feStack );
localIndex numSupportPoints = finiteElement.getNumSupportPoints( feStack );
for( localIndex a=0; a< numSupportPoints; ++a )
{
localIndex const nodeIndex = elemsToNodes[ k][ a ];
Expand Down
Loading
Loading