Project is not compiled dev c что делать

Project is not compiled dev c что делать

Полезные ссылки:
Project is not compiled dev c что делать. Смотреть фото Project is not compiled dev c что делать. Смотреть картинку Project is not compiled dev c что делать. Картинка про Project is not compiled dev c что делать. Фото Project is not compiled dev c что делатьFAQ Раздела Project is not compiled dev c что делать. Смотреть фото Project is not compiled dev c что делать. Смотреть картинку Project is not compiled dev c что делать. Картинка про Project is not compiled dev c что делать. Фото Project is not compiled dev c что делатьОбновления для FAQ Раздела Project is not compiled dev c что делать. Смотреть фото Project is not compiled dev c что делать. Смотреть картинку Project is not compiled dev c что делать. Картинка про Project is not compiled dev c что делать. Фото Project is not compiled dev c что делатьПоиск по Разделу Project is not compiled dev c что делать. Смотреть фото Project is not compiled dev c что делать. Смотреть картинку Project is not compiled dev c что делать. Картинка про Project is not compiled dev c что делать. Фото Project is not compiled dev c что делатьMSDN Library Online

Project is not compiled dev c что делать. Смотреть фото Project is not compiled dev c что делать. Смотреть картинку Project is not compiled dev c что делать. Картинка про Project is not compiled dev c что делать. Фото Project is not compiled dev c что делать

Project is not compiled dev c что делать. Смотреть фото Project is not compiled dev c что делать. Смотреть картинку Project is not compiled dev c что делать. Картинка про Project is not compiled dev c что делать. Фото Project is not compiled dev c что делатьProject is not compiled dev c что делать. Смотреть фото Project is not compiled dev c что делать. Смотреть картинку Project is not compiled dev c что делать. Картинка про Project is not compiled dev c что делать. Фото Project is not compiled dev c что делатьProject is not compiled dev c что делать. Смотреть фото Project is not compiled dev c что делать. Смотреть картинку Project is not compiled dev c что делать. Картинка про Project is not compiled dev c что делать. Фото Project is not compiled dev c что делать

make.exe: *** [main.o] Error 1

и так всегда Project is not compiled dev c что делать. Смотреть фото Project is not compiled dev c что делать. Смотреть картинку Project is not compiled dev c что делать. Картинка про Project is not compiled dev c что делать. Фото Project is not compiled dev c что делать

Вроде бы все настроил, все фолдеры указал, а он все равно упирается. Мож где че позабыл?

Project is not compiled dev c что делать. Смотреть фото Project is not compiled dev c что делать. Смотреть картинку Project is not compiled dev c что делать. Картинка про Project is not compiled dev c что делать. Фото Project is not compiled dev c что делать

Project is not compiled dev c что делать. Смотреть фото Project is not compiled dev c что делать. Смотреть картинку Project is not compiled dev c что делать. Картинка про Project is not compiled dev c что делать. Фото Project is not compiled dev c что делатьProject is not compiled dev c что делать. Смотреть фото Project is not compiled dev c что делать. Смотреть картинку Project is not compiled dev c что делать. Картинка про Project is not compiled dev c что делать. Фото Project is not compiled dev c что делатьProject is not compiled dev c что делать. Смотреть фото Project is not compiled dev c что делать. Смотреть картинку Project is not compiled dev c что делать. Картинка про Project is not compiled dev c что делать. Фото Project is not compiled dev c что делать

Project is not compiled dev c что делать. Смотреть фото Project is not compiled dev c что делать. Смотреть картинку Project is not compiled dev c что делать. Картинка про Project is not compiled dev c что делать. Фото Project is not compiled dev c что делать Project is not compiled dev c что делать. Смотреть фото Project is not compiled dev c что делать. Смотреть картинку Project is not compiled dev c что делать. Картинка про Project is not compiled dev c что делать. Фото Project is not compiled dev c что делать Project is not compiled dev c что делать. Смотреть фото Project is not compiled dev c что делать. Смотреть картинку Project is not compiled dev c что делать. Картинка про Project is not compiled dev c что делать. Фото Project is not compiled dev c что делать Project is not compiled dev c что делать. Смотреть фото Project is not compiled dev c что делать. Смотреть картинку Project is not compiled dev c что делать. Картинка про Project is not compiled dev c что делать. Фото Project is not compiled dev c что делать

/* Declare Windows procedure */
LRESULT CALLBACK WindowProcedure (HWND, UINT, WPARAM, LPARAM);

/* Make the class name into a global variable */
char szClassName[ ] = «WindowsApp»;

int WINAPI WinMain (HINSTANCE hThisInstance,
HINSTANCE hPrevInstance,
LPSTR lpszArgument,
int nFunsterStil)

<
HWND hwnd; /* This is the handle for our window */
MSG messages; /* Here messages to the application are saved */
WNDCLASSEX wincl; /* Data structure for the windowclass */

/* The Window structure */
wincl.hInstance = hThisInstance;
wincl.lpszClassName = szClassName;
wincl.lpfnWndProc = WindowProcedure; /* This function is called by windows */
wincl.style = CS_DBLCLKS; /* Catch double-clicks */
wincl.cbSize = sizeof (WNDCLASSEX);

/* Use default icon and mouse-pointer */
wincl.hIcon = LoadIcon (NULL, IDI_APPLICATION);
wincl.hIconSm = LoadIcon (NULL, IDI_APPLICATION);
wincl.hCursor = LoadCursor (NULL, IDC_ARROW);
wincl.lpszMenuName = NULL; /* No menu */
wincl.cbClsExtra = 0; /* No extra bytes after the window class */
wincl.cbWndExtra = 0; /* structure or the window instance */
/* Use Windows’s default color as the background of the window */
wincl.hbrBackground = (HBRUSH) COLOR_BACKGROUND;

/* Register the window class, and if it fails quit the program */
if (!RegisterClassEx (&wincl))
return 0;

/* The class is registered, let’s create the program*/
hwnd = CreateWindowEx (
0, /* Extended possibilites for variation */
szClassName, /* Classname */
«Windows App», /* Title Text */
WS_OVERLAPPEDWINDOW, /* default window */
CW_USEDEFAULT, /* Windows decides the position */
CW_USEDEFAULT, /* where the window ends up on the screen */
544, /* The programs width */
375, /* and height in pixels */
HWND_DESKTOP, /* The window is a child-window to desktop */
NULL, /* No menu */
hThisInstance, /* Program Instance handler */
NULL /* No Window Creation data */
);

/* Make the window visible on the screen */
ShowWindow (hwnd, nFunsterStil);

/* This function is called by the Windows function DispatchMessage() */

LRESULT CALLBACK WindowProcedure (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
<
switch (message) /* handle the messages */
<
case WM_DESTROY:
PostQuitMessage (0); /* send a WM_QUIT to the message queue */
break;
default: /* for messages that we don’t deal with */
return DefWindowProc (hwnd, message, wParam, lParam);
>

Источник

Source file not compiled Dev C++

I just installed Dev C++ and I am learning C programming. the code i used was

I am using windows 8

Project is not compiled dev c что делать. Смотреть фото Project is not compiled dev c что делать. Смотреть картинку Project is not compiled dev c что делать. Картинка про Project is not compiled dev c что делать. Фото Project is not compiled dev c что делать

9 Answers 9

Install new version of Dev c++. It works fine in Windows 8. It also supports 64 bit version.

Now you will see a tab with gcc and make and the respective path to it.Edit the gcc and make path to use mingw32-c++.exe and mingw32-make.exe respectively.Now it will work.

Project is not compiled dev c что делать. Смотреть фото Project is not compiled dev c что делать. Смотреть картинку Project is not compiled dev c что делать. Картинка про Project is not compiled dev c что делать. Фото Project is not compiled dev c что делать

The reason was that you were using compilers built for linux.

I guess you’re using windows 7 with the Orwell Dev CPP

This version of Dev CPP is good for windows 8 only. However on Windows 7 you need the older version of it which is devcpp-4.9.9.2_setup.exe Download it from the link and use it. (Don’t forget to uninstall any other version already installed on your pc) Also note that the older version does not work with windows 8.

Project is not compiled dev c что делать. Смотреть фото Project is not compiled dev c что делать. Смотреть картинку Project is not compiled dev c что делать. Картинка про Project is not compiled dev c что делать. Фото Project is not compiled dev c что делать

You can always try doing it manually from the command prompt. Navigate to the path of the file and type:

Project is not compiled dev c что делать. Смотреть фото Project is not compiled dev c что делать. Смотреть картинку Project is not compiled dev c что делать. Картинка про Project is not compiled dev c что делать. Фото Project is not compiled dev c что делать

I found a solution. Please follow the following steps:

Right Click the My comp. Icon

Click Advanced Setting.

CLick Environment Variable. On the top part of Environment Variable Click New

Project is not compiled dev c что делать. Смотреть фото Project is not compiled dev c что делать. Смотреть картинку Project is not compiled dev c что делать. Картинка про Project is not compiled dev c что делать. Фото Project is not compiled dev c что делать

This error occurred because your settings are not correct.

For example I receive

Because I have no permission to write on my exe file.

Project is not compiled dev c что делать. Смотреть фото Project is not compiled dev c что делать. Смотреть картинку Project is not compiled dev c что делать. Картинка про Project is not compiled dev c что делать. Фото Project is not compiled dev c что делать

After some investigation, and with Dr.Topaz’s help, I have learned that you will want to confirm that the program set for g++ in the Compiler Options really does compile the source code. In my case, the C:\Dev-Cpp\bin\g++.exe program did not create an exe, but the C:\Dev-Cpp\bin\c++.exe program did. Either program appears to be intended to take the same arguments and options as GNU g++. I would love to find an actual doc on the Dev-C++ compiler programs, but I have not so far.

You can test the compiler program with a simple example like this:

Currently in 2021, the Dev-C++ site invites you to download either original Dev-C++ or a newer fork by a group named Embarcadero.

Источник

Исходный файл не скомпилирован Dev С++

Я только что установил Dev С++, и я изучаю программирование на C. код, который я использовал, был

Я использую окна 8

ОТВЕТЫ

Ответ 1

Ответ 2

Установите новую версию Dev С++. Он отлично работает в Windows 8. Он также поддерживает 64-разрядную версию.

Ответ 3

Я предполагаю, что вы используете окна 7 с Orwell Dev CPP

Эта версия Dev CPP хороша только для Windows 8. Однако в Windows 7 вам нужна более старая версия, которая devcpp-4.9.9.2_setup.exe Загрузите его со ссылкой и используйте. (Не забудьте удалить любую другую версию, уже установленную на вашем компьютере) Также обратите внимание, что более старая версия не работает с окнами 8.

Ответ 4

Вы всегда можете попробовать сделать это вручную из командной строки. Перейдите к пути к файлу и введите:

Ответ 5

Я нашел решение. Выполните следующие действия:

Щелкните правой кнопкой мыши на My comp. Пиктограмма

Нажмите «Дополнительные настройки».

Переменная среды CLick. В верхней части переменной среды нажмите «Создать»

Задайте имя переменной как: PATH, затем Установить значение переменной как: ( «местоположение g++.exe» ) Напр. C:\Program Files (x86)\Dev-Cpp\MinGW64\bin

Ответ 6

Я столкнулся с такой же проблемой, как описано выше.

Это можно решить, создав новый проект и создав новый файл в этом проекте. Сохраните файл, а затем попытайтесь создать и запустить.

Надеюсь, что это поможет.:)

Ответ 7

Эта ошибка возникла из-за неправильных настроек.

Например, я получаю

Ответ 8

Теперь вы увидите вкладку с gcc и make и соответствующий путь к ней. Измените путь gcc и make для использования mingw32-c++.exe и mingw32-make.exe соответственно. Теперь это сработает.

Project is not compiled dev c что делать. Смотреть фото Project is not compiled dev c что делать. Смотреть картинку Project is not compiled dev c что делать. Картинка про Project is not compiled dev c что делать. Фото Project is not compiled dev c что делать

Причина в том, что вы использовали компиляторы, созданные для Linux.

Ответ 9

Источник

Dev C++ не компилирует

Dev-C++ не компилирует программу
Dev-C++ перестал компилировать код C++ я пробовал скомпилировать код из книги «C++ для.

Dev C++ не компилирует программу со структурами
Столкнулся с проблемой, что Dev C++ 4.9.9.2 не компилирует следующую программу Пока я использовал.

Компилирует в Dev C++, выдает ошибку в 12 студии
Компилируется в Dev C++, выдает ошибку в 12 студии, в чем дело? #include «stdafx.h» #include.

Это не стереотип. Я когда только начинал учить С++ тоже с DEV_C++ работал. Поработав с ним некоторое время, начал замечать глюки, потом, набравшись немного опыта, начал замечать их все больше и больше. Они там есть, и ни чего с этим не поделаешь!

ммда
Переустановил DEМ,
стала появляться другая ошибка
C:\Users\User\Desktop\C++\Makefile.win [Build Error] No rule to make target `D:/Program’, needed by `main7.o’. Stop.

Добавлено через 6 минут

Добавлено через 5 минут

Это не стереотип. Я когда только начинал учить С++ тоже с DEV_C++ работал. Поработав с ним некоторое время, начал замечать глюки, потом, набравшись немного опыта, начал замечать их все больше и больше. Они там есть, и ни чего с этим не поделаешь!

Я не понимаю.
Может быть ты скачал devc++ отдельно от компилятора MinGW, и потом неправильно прицепил его к компилятору?
Посмотри в
СЕРВИС > ПАРАМЕТРЫ КОМПИЛЯТОРА > ПРОГРАММЫ
должно быть вот так
g++: g++.exe
make: make.exe
windres: windres.exe

Также посмотри в
ПРОЕКТ > ПАРАМЕТРЫ ПРОЕКТА > MAKE-ФАЙЛ
сними галочку напротив Use custom Makefile (do not generate Makefile, use this one) если она там стоит..

Максим Ширинкин, вы ламер, извините за выражение.Project is not compiled dev c что делать. Смотреть фото Project is not compiled dev c что делать. Смотреть картинку Project is not compiled dev c что делать. Картинка про Project is not compiled dev c что делать. Фото Project is not compiled dev c что делать
Не трогайте DEVC++Project is not compiled dev c что делать. Смотреть фото Project is not compiled dev c что делать. Смотреть картинку Project is not compiled dev c что делать. Картинка про Project is not compiled dev c что делать. Фото Project is not compiled dev c что делать» />

Добавлено через 21 минуту
Кажется я поняла в чем делоProject is not compiled dev c что делать. Смотреть фото Project is not compiled dev c что делать. Смотреть картинку Project is not compiled dev c что делать. Картинка про Project is not compiled dev c что делать. Фото Project is not compiled dev c что делать
У тебя EXEшник создается одной папке, а Оbject-файл в другой, добавляем сюда строгую Windows7.
Попробуй изменить пути создания EXE-файла и O-файла, так чтобы они были в одной папке.

Источник

Project is not compiled dev c что делать

the problem is i make a simpel program and when i try to compile it apers whid no error but when i put to compile and run it says (source file not compile) i think this must be error from the program dev c++ but dont know how to fix since i have this program in other pc and it never occured this error can some tell me how to fix i have instaled two times and the bug doesnt desaper

. Its windows Vista, i didnt even know that dev c++ was only for windows but k nvm still in yours ruls it only says OS not sayed what type of windows. that are diferrent questins

There are special directions for getting Dev to work with Vista. They
are in the thread titled «Please Read Before Posting a Question».

Please take the time to read through it completely. It is worth it.

hum i only read now that i need to post the necessary inf there it goes it is dev_c++ 4.9.9.2 the error is the one i allready told

You read about the Basic 3, but you didn’t post what it asked for.

In particular, the basic 3 tell you to post the compile log, and
to NOT just excerpt the error message.

Please re-read the information you need to post, and post all of
it, including the particular code that goes with the compile log
you are posting.

Execution terminated
Compilation successful

the version is dev c++ 4.9.9.2

i think i put this time all the necessary inf

one more thing the compile log that i post is when i put to compile because the compile log that is from the compile and run doesnt stay in compile log but i can see the :
Default compiler
Executing gcc.exe.

and then in the left side of the compile log apers in red abort, and close and shows the mesage: source file not compiled. dont no if these helps much, trying to post most details in the problem

Give us strength! Dev-C++ is a Windows program so that much is a given. That is not what was asked for. Windows95 is a very different OS from Vista fro example!

Источник

Добавить комментарий

Ваш адрес email не будет опубликован. Обязательные поля помечены *