[CI] Try to Mbed things out

This commit is contained in:
LDA 2024-09-15 12:07:30 +02:00
commit 4a2160503b
3 changed files with 19 additions and 17 deletions

View file

@ -466,7 +466,7 @@ main_build(int argc, char *argv[])
write_images(makefile, images);
if (with_static)
{
fprintf(makefile, " -lm -lpthread -lssl -lCytoplasm -lssl -lcrypto");
fprintf(makefile, " -lm -lpthread -lmbedtls -lmbedx509 -lmbedcrypto -lCytoplasm -lmbedtls -lmbedx509 -lmbedcrypto");
if (with_lmdb) fprintf(makefile, " -llmdb");
}
fprintf(makefile, " -lCytoplasm $(LDFLAGS)\n");
@ -558,8 +558,8 @@ main_build(int argc, char *argv[])
fprintf(makefile, " -L $(CYTO_LIB)");
if (with_static)
{
fprintf(makefile, " -lm -lpthread -lssl");
fprintf(makefile, " -lCytoplasm -lssl -lcrypto");
fprintf(makefile, " -lm -lpthread -lmbedtls -lmbedx509 -lmbedcrypto");
fprintf(makefile, " -lCytoplasm -lmbedtls -lmbedx509 -lmbedcrypto");
if (with_lmdb) fprintf(makefile, " -llmdb");
}
fprintf(makefile, " -lCytoplasm $(CFLAGS)\n");