Reopen it carefully. The careful netizens should have seen it. After entering d:\djgpp\v2\lib and opening it again, it becomes d:/djgpp/v2/lib. The IDE tool will automatically convert it. The reason for this is that gun was originally used on the unit system, where paths are represented by "/", while on Windows, paths are represented by "\". This is handled by the IDE itself. We don't need to worry about it. Next, just enter the paths for object and source. Object direction refers to the path where the generated.obj files are stored, such as hello.obj. Source direction refers to the path where the original code is stored, such as hello.c. I default to the current working directory, for example: d:\djgpp\v2apps\bin. When compiling, the compiler will find hello.c according to the current settings, compile it to generate hello.obj, and link it into hello.exe.