BeRo1985 / flre

FLRE - Fast Light Regular Expressions - A fast light regular expression library
GNU Lesser General Public License v2.1
94 stars 23 forks source link

unused units #84

Open benibela opened 2 years ago

benibela commented 2 years ago

It has dl and Unix,UnixType, in the uses list, but does not use them (with FPC)

So they can be removed.

Especially dl. Without dl, I can cross compile it to arm, and run it on x86_64 with qemu-arm. With dl, it does not run due to a missing .so file.

BeRo1985 commented 1 year ago

When I remove them, then I will get

image

thus, they should stay there, I guess.

BeRo1985 commented 1 year ago

As additional info, FLRE is now also used in commercial C++ software specifically aimed on the Linux ARM64/AArch64 target.

benibela commented 11 months ago

When I remove them, then I will get

image

thus, they should stay there, I guess.

perhaps they need to be put in libFLRE.dpr

a program and a library have different requirements