Closed zrlsid closed 3 years ago
Describe the bug The setup.sh script does not build the HELib as there is a typo in the parameter list of the cmake command.
setup.sh
HELib
cmake
Current line @ 202: -DNTL_LIB="${DEPEND_DIR}/ntl/lib/ntl.a" \
-DNTL_LIB="${DEPEND_DIR}/ntl/lib/ntl.a" \
The correct library path is actually: -DNTL_LIB="${DEPEND_DIR}/ntl/libs/ntl.a" \
-DNTL_LIB="${DEPEND_DIR}/ntl/libs/ntl.a" \
note the s in the directory name libs
With this fix, it did build the HELib with the script.
@boland25 I just committed the fix to this to master. I wanted to point it out to you in case it had somehow slipped through testing. Thank you @zrlsid! Much appreciated Silvio!
Describe the bug The
setup.sh
script does not build theHELib
as there is a typo in the parameter list of thecmake
command.Current line @ 202:
-DNTL_LIB="${DEPEND_DIR}/ntl/lib/ntl.a" \
The correct library path is actually:
-DNTL_LIB="${DEPEND_DIR}/ntl/libs/ntl.a" \
note the s in the directory name libs
With this fix, it did build the
HELib
with the script.