The following fashions are from others:
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
I had this problem when I wrote makefile.
I checked it on the internet, and they said yes.
GCC, g++, RM,CP Front is tab, not space
I changed both sides, all with the tab, but the compilation still prompts for errors
makefile:3:*** missing delimiter. Stop it
I realized that in Getit's
Compilation, Preferences: Under the Editor Options page, there is a "bit table" with a check box: inserting spaces instead of tabs (s)
If selected, the editor will replace the "system table" with a space
I removed it and compiled it successfully after I modified my makefile.
Other words:
First look at whether to use tab
Two second to see if it's really using tab
+++++++++++++++++++++++++++++++++++++++++++++++++++++++
This method has not been used, but for vim found a way
Added in Vim's configuration file. vimrc
Set Tabstop=8 "Sets the width of tab (Tab key) set Softtabstop=8" Set the width of the soft tab set expandtab "tab replace space
If you have a similar configuration statement, set it to this format and re-process the previously written tab problem for auto-alignment
About the makefile:3:*** omission delimiter. Stop it. "Workaround Two