Libs/mbedtls: Use strip instead of kos32-strip

`kos32-strip`` contains a bug:
When trying to strip a large object file builded by `clink`,
a segfault occurs. This bug is not reproduced on the newer `strip`.

Signed-off-by: Maxim Logaev <maxlogaev@proton.me>
This commit is contained in:
Maxim Logaev 2025-03-02 21:19:25 +03:00 committed by Max Logaev
parent 739facfeca
commit c11c7922bd

View File

@ -100,5 +100,4 @@ compile_gcc(MBEDTLS_SRC);
table.insert(OBJS,"mbedtls_export.o");
table.insert(OBJS,"mbedtls_init.o");
tup.rule(OBJS, "clink -o %o %f" .. " && kos32-strip %o --strip-unneeded " .. tup.getconfig("KPACK_CMD"), "mbedtls.obj");
tup.rule(OBJS, "clink -o %o %f" .. " && strip %o --strip-unneeded " .. tup.getconfig("KPACK_CMD"), "mbedtls.obj");