-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
problem using -cflags …
and -mklib
#59
Comments
Interesting the mklib issue. Tomorrow I wil try fix. As the space necessary into the arguments this is a bug of python moduld argparse that I am using... maybe I will switch off argparse and try to use other cli module, but not tomorrow :-) Thank you again |
Dear @zbeekman, I just look with more attention to this issue. I am a bit confused. In my original intention Now I have some possibilities:
Let me know what you prefer. See you soon. |
Ah I see. It sounds like this is not a bug at all, and that I just
|
OK, for the moment I close the issue, but I you feel this behavior is not adequate/best for your usage, please let me know. See you soon. |
It seems that using
cflags '...'
together with-mklib
causes the-c
flag that-mklib
inserts to evaporate.For example:
A work around is to manually add the
-c
to the-cflags
but this should be done automatically whenever-mklib
is used, even when adding custom flags.Also, one still needs to put a space in the front of the flags string passed to the
-cflags
switch, otherwise a usage message appears.The text was updated successfully, but these errors were encountered: