cl instruction

Hello everyone
I am learning the C++ in the windows.
I don't use the visual IDE,instead I use the command.
I use the "cl.exe" instruction.
But I have come across some difficulty.
Do some one use the "Cl.exe"?
My question is as follows.
I use the "cl.exe" to generate the exe file.
But I want to change the path ,where save the exe files.
I look up.It's is necessary to use the options --'/Fe'
cl -GX E:/acms/t.cpp -Fe E:/test/czl.exe
But when I run ,it's error....
Can some one help me ?
Thank you !
Last edited on
Don't think there should be a space between the Fe command and the directory name
so try:
cl -GX E:/acms/t.cpp -FeE:/test/czl.exe
Last edited on
Ou,Yes.I try again,then it success.Thank you very much!Can we make friends?
Topic archived. No new replies allowed.