<div dir="ltr"><div><div><div><div><div><div>I love what you guys are doing with clang - looking forward to being able to use the same compiler on windows and linux easily!  The ultimate would be if you could use clang to compile extensions for windows, linux, and osx using the same compiler.  That's my primary use case.<br>

<br></div>One thing on windows that is REALLY annoying is that we can't do something like<br><br>clang++ -shared -o CoolProp.dll *.o<br><br></div>since wildcard expansion doesn't work.  FYI, my clang:<br><br>C:\Users\Belli>clang++ --version<br>

clang version 3.4 (198054)<br>Target: i686-pc-mingw32<br>Thread model: posix<br><br></div>If you could fix this, it would be so nice, and we wouldn't have to write code like <br><br>set objs=<br>for %%f in (*.o) do (<br>

    set objs=%objs% %%f<br>)<br>clang++ -shared -o CoolProp.dll %objs%<br><br></div>every time!<br><br></div>Keep up the great work!<br><br></div>Kind Regards,<br>Ian<br><div><div><div><div><div><br></div></div></div></div>

</div></div>