tpoechtrager / cctools-port

Apple cctools port for Linux and *BSD
721 stars 165 forks source link

libtool shouldn't generate a same static library twice #152

Closed xiedeacc closed 1 week ago

xiedeacc commented 3 weeks ago

when cross compiling openssl, libtool will generate libcrypto.a twice, each time archive different object files, second time will overide previous libcrypto.a, this lead link error for many undfined symbols when link libcrypto.a. libtool should generate libcrypto.a just one time with all object files, not split into twice, or append object files at second time?(does it has such option???)

image

xiedeacc commented 3 weeks ago

is too many object file that lead libtool split into twice?

xiedeacc commented 1 week ago

it's openssl's problem