Closed tkanteck closed 7 months ago
New repo clone operation needs to add --recurse-submodules
parameter. At the moment we cannot find a way to automatically update submodules when cloning.
Already cloned repo requires running git submodule update --init --recursive
operation to update the submodule.
More details here:
After some investigation, we found that git submodule approach wasn't working as we expected and it was breaking some CI solutions. Consequently, the submodule was removed and required files were simply transferred from another repo.
intel-ipsec-mb
git submodule has been just added to isa-l_crypto to provide optimized AES-GCM implementation. Compilation will fail without this submodule on x86 architectures.For new repo clone the submodule it will be updated automatically.
For already cloned repo manual action is required:
git submodule update --init --recursive
after pulling the latest changes.