Support filename wildcards on windows commandline (*.dll) #85
Labels
enhancement
New feature or request
good first issue
Good for newcomers
help wanted
Extra attention is needed
Wildcards, such as * and ?, don't work directly with standard C functions like fopen(3) or open(3) on Windows because the C standard library functions don't expand wildcards into lists of filenames.
To process wildcards we need to use the Windows API, specifically functions like FindFirstFile and FindNextFile.
Example:
Such a parsing logic should go into a function in
src/file.c
then called bysrc/cjit.c
to parse arguments.The text was updated successfully, but these errors were encountered: