Amex Blue Cash preferred 6% Cashback+$150bonus超市专用信用卡 http://amex.co/Vlnu1C 不仅有welcome $150 bonus, 最重要的在于能享用6% cash back at supermarkets, 3 % cash back at gas stations and department stores。在超市花销比较大的,赶紧 下手吧。 • Earn $150 cash back after spending $1,000 in eligible purchases in the first 3 months of Cardmembership • Get 6% cash back at supermarkets, 3% cash back at gas stations and department stores, and 1% cash back on all other purchases • NO spend minimum, NO enrollment, and NO rotating rewards categories • 0% intro APR on purchases for 12 months, flexibility to pay over time http://amex.co/Vlnu1C 打开链接可以看到下面这个图样,是右边那张信用卡。
Connect to a remote unix server from windows and run your C program? This is nothing related to compilation unless you want to port a unix C program to windows.
可能我的表达不太到位,不过我想要的就是"port a unix C program to windows"。 我就是想可不可以在WINDOWS下编译code让后run 谢谢
【在 e****d 的大作中提到】 : Connect to a remote unix server from windows and run your C program? : This is nothing related to compilation unless you want to port a unix C : program : to windows.
Surely you can. But even porting to cygwin will take time. If you have no clue on how to port, why wasting your time instead of paying someone or get a collaborator?
【在 H**o 的大作中提到】 : 可能我的表达不太到位,不过我想要的就是"port a unix C program to windows"。 : 我就是想可不可以在WINDOWS下编译code让后run : 谢谢
p*e
20 楼
this comparison is already making K501 look bad. K501 should be compared with K701 K601 HD600 HD580 etc
【在 p***o 的大作中提到】 : Surely you can. But even porting to cygwin will take time. : If you have no clue on how to port, why wasting your time : instead of paying someone or get a collaborator?
e*d
22 楼
In order to do this, you need to learn how to do C programming in win32.
1 Install mingw/gcc/msys 2 Extract the source file 3 Read README, INSTALL or whatever document on how to build 4 Try to build it Most likely you can finish the first 3 steps in 30mins and the fourth step fails. Then you need to figure out why it fails: lack of tools, e.g. yacc; incompatible build script; or the worst, system calls not available on windows. It requires you to know programming on both platforms well before you can get thing right. Anyway, I won't do it unless paid directly or indirectly if the fourth step just fails.
【在 p***o 的大作中提到】 : 1 Install mingw/gcc/msys : 2 Extract the source file : 3 Read README, INSTALL or whatever document on how to build : 4 Try to build it : Most likely you can finish the first 3 steps in 30mins and the fourth step : fails. Then you need to figure out why it fails: lack of tools, e.g. yacc; : incompatible build script; or the worst, system calls not available on : windows. It requires you to know programming on both platforms well before : you can get thing right. : Anyway, I won't do it unless paid directly or indirectly if the fourth
H*o
26 楼
没权限装。我也这么想过
【在 S**I 的大作中提到】 : 装个Linux的虚拟机?
a*l
27 楼
For the application you are looking at, very probably you can simply dump all the code into a visual studio project and compile and run (assuming the author provides all the libraries in that zip file) This seems to be a simply application that probably does not involve any special unix operation, so it's highly likely you can get it ported to windows with minimal effort.
have your library for platform dependent stuffs. If it is command line program, it is not difficult to have a cross-platform version. your library will be useful for all your applications in the future, definitely worth the effort