Skip to content

Commit

Permalink
change paths
Browse files Browse the repository at this point in the history
  • Loading branch information
smittals2 committed Mar 5, 2025
1 parent 25641a8 commit f9dae59
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/ci/integration/run_ibmtpm_integration.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ cd ${SCRATCH_FOLDER}
function ibmtpm_build() {
export CXXFLAGS="-I${AWS_LC_INSTALL_FOLDER}/include $CXXFLAGS"
export CFLAGS="-I${AWS_LC_INSTALL_FOLDER}/include $CFLAGS"
export LDFLAGS="-L${AWS_LC_INSTALL_FOLDER}/${AWS_LC_LIBRARY_FOLDER} $LDFLAGS"
export LDFLAGS="-L${AWS_LC_INSTALL_FOLDER}/lib $LDFLAGS"

pushd src
make -j

export LD_LIBRARY_PATH="${AWS_LC_INSTALL_FOLDER}/${AWS_LC_LIBRARY_FOLDER}"
export LD_LIBRARY_PATH="${AWS_LC_INSTALL_FOLDER}/lib"
local ibmtpm_executable="tpm_server"
ldd ${ibmtpm_executable} \
| grep "${AWS_LC_INSTALL_FOLDER}/${AWS_LC_LIBRARY_FOLDER}/libcrypto.so" || exit 1
| grep "${AWS_LC_INSTALL_FOLDER}/lib/libcrypto.so" || exit 1

popd
}
Expand Down

0 comments on commit f9dae59

Please sign in to comment.