所以,我尝试设置它。每次我遇到错误或者它不会创建一个 exe,我都找不到有用的代码。我超级累和生气。
我希望有一个人可以帮助我
我在 Youtube 和 Bing 上搜索,但没有找到任何对我有用的东西。没有任何工作。
我已经有这个代码:
npp_save
cd "$(CURRENT_DIRECTORY)"
gcc "$(FILE_NAME)" -o $(NAME_PART) -march=native -O3
NPP_RUN $(NAME_PART)
//It doesn't create the needed exe file
...这段代码:
npp_save
cd $(CURRENT_DIRECTORY)
E:\Programme\MinGW\bin\gcc.exe $(FILE_NAME)
cmd /c $(CURRENT_DIRECTORY)\$(NAME_PART).exe
//The same thing
对于第一个代码,我收到此错误:
NPP_SAVE: F:\Entwicklung\C\Begin
CD: F:\Entwicklung\C
Current directory: F:\Entwicklung\C
gcc "Begin" -o Begin -march=native -O3
Process started (PID=3676) >>>
Begin: file not recognized: file format not recognized
collect2.exe: error: ld returned 1 exit status
<<< Process finished (PID=3676). (Exit code 1)
NPP_RUN: Begin
================ READY ================
对于第二个代码,我得到了这个:
NPP_SAVE: F:\Entwicklung\C\Begin
CD: F:\Entwicklung\C
Current directory: F:\Entwicklung\C
E:\Programme\MinGW\bin\gcc.exe Begin
Process started (PID=11760) >>>
Begin: file not recognized: file format not recognized
collect2.exe: error: ld returned 1 exit status
<<< Process finished (PID=11760). (Exit code 1)
cmd /c F:\Entwicklung\C\Begin.exe
Process started (PID=5024) >>>
Der Befehl "F:\Entwicklung\C\Begin.exe" ist entweder falsch geschrieben
oder
konnte nicht gefunden werden. <-- Over there its saying, that this
isn't
a
command
<<< Process finished (PID=5024). (Exit code 1)
================ READY ================
我很抱歉我的英语不好和信息少,但我非常累,只想最终编译 C 代码。我不知道。也许你可以给我一个正确的代码。
非常感谢,祝您有美好的一天!