Question: Why is the compiler not recognizing my command options for the following command ? cl30 -ox2 -o3 file.c
Answer: The option -ox2 is equivalent to: -o -x2 -o2 -x2
If the -o2 and -o3 options are both specified, the latter will take affect.