-
Notifications
You must be signed in to change notification settings - Fork 36
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
MinGW/cygwin paths are passed to cl.exe as option #13
Comments
additional: fix Copyright date, increment version number
The proposed fix in #10 uses Instead, I propose removing the code that slightly modifies an option beginning '/'. Currently these are replaced by the system specific separator ( cccl's goal is to be simple and lightweight and the proposal fits in with that. There is effectively no change on cygwin based systems. However, not on MSYS based systems. On MSYS based systems, the upside is:
On MSYS based systems, the downside is:
|
cl exe as GCC allows to specify a file as input, but
cccl test.c /path/to/lib
is translated tocl test.c -path/to/lib
which then results in warning D9002 of cl "unknown option ignored", followed by a linker error because of the missing symbols.The text was updated successfully, but these errors were encountered: