Меню

Dev c ошибка 1073741674

  • Forum
  • Beginners
  • Dev C++ Hello World Program outputs make

Dev C++ Hello World Program outputs make Error -largenumber

The Machine is running the latest version of Windows 10.
Dev C++ 4.9.9.2 (mingw) was installed on the C: Drive (C:/Dev-Cpp) via the official bloodshed website.
The Souce Code(s) is saved in the Documents/DevC++ Folder.

This is the source code:

1
2
3
4
5
6
7
8
9
#include <iostream>

int main()
{
    std::cout << "Running" << std::endl;
    system("PAUSE");
    return 0;
}

1. — Output of Compile & Run (F9):
———————————
C:UsersmyusernameDocumentsDevC++Makefile.win [Build Error] [main.o] Error -1073741674
———————————

2. — Output of Compiler Log:
———————————
Compiler: Default compiler
Building Makefile: «C:myusernamemyusernameDocumentsDevC++Makefile.win»
Executing make…
make.exe -f «C:UsersmyusernameDocumentsDevC++Makefile.win» all
g++.exe -c main.cpp -o main.o -I»C:/Dev-Cpp/lib/gcc/mingw32/3.4.2/include» -I»C:/Dev-Cpp/include/c++/3.4.2/backward» -I»C:/Dev-Cpp/include/c++/3.4.2/mingw32″ -I»C:/Dev-Cpp/include/c++/3.4.2″ -I»C:/Dev-Cpp/include»
make.exe: *** [main.o] Error -1073741674
Execution terminated

———————————

When running g++ (—version) in a regular cmd, bash or powershell, there’s no output, nor any error whereas gcc gives an «Internal error: Aborted (programm collect2)» error.

Appended C:Dev-Cppbin System-Path Variable.

Last edited on

Well, your very first issue is that you’re using Dev C++. I would recommend a better IDE like Code::Blocks or a more professional one like Visual Studio(I recommend VS), both of which you can get for free. They also give you better error messages and tell you what is wrong.

I ran the code in Visual Studio 2019 and on a few online compilers and it runs fine for me. I’m unsure what the error is.

Also, dont use system anything. use std::cin.get() to wait instead.

Something like this:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <iostream>

using std::cout;
using std::cin;
using std::endl;

int main()
{
    cout << "Running" << endl;
    
    cin.get();

    return 0;
}

Last edited on

It’s either not installed properly or it’s something weird like a bad reaction with your real-time antivirus protection (which you would need to disable if that’s the case).

However, I agree that codeblocks is better than dev-c++. You might want to totally uninstall dev-c++ and get codeblocks instead.

Or the free MS VS 2019 Community edition.

Hello My Echo My Shadow And Me,

If you must use Dev C++ there is a newer version 5.11 that would be better. Otherwise Code::Blocks or a version of MSVS, 2017 or 2019, would be a better choice. I use MSVS 2017 and 2019, but do not take that as an endorsement because I also use Code::Blocks and others at times.

Your code should not make any difference, but Dev C++ is set up to use a standard that is pre2011 so you may have some problems. Or as dutch said it may have been a bad install.

If it is properly installed consider following this:


The DEV C++ that I have is version 5.11 with a build year of 2015.

To adjust the settings:
 • Under the Tools menu choose "Compiler Options".
 • In the window that comes up you will see tabs for "General", "Settings", "Directories" and "Programs".
 • Choose the settings tab.
 • In the next set of tabs that come up choose "Code Generation".
 • The last line should say “Language Standard (-std).
 • On the right side of that line click on the down arrow.
 • In the list box that comes up choose "ISO C++ 11".  // I believe this is the best choice.
 • Press "OK".
This will let the IDE and compiler use the C++11 standards.

You should also look under the “Help” menu choice and click on "About" for more information.

Just so you know I ran this in my installed version of Dev C++ wit no problem.

You posted the contents of the log file, but the «Makefile.win» file would be of more use.

Andy

Installing a newer (5.11) seems to have fixed the issue magically.
It is worth noting that the newer version were (auto)installed into the Program Files(x86) folder instead of directly on the C: drive. Furthermore TDM was chosen.

Thanks everyone.

Last edited on

Topic archived. No new replies allowed.

I am having lots of trouble getting a hello world program to compile in Dev-C++. I am very familiar with coding, I have been using python, C#, and Java for a few years now.

Syntax, and headers all seem to be fine. I have reinstalled Dev-C++ multiple times and have even tried installing the compiler manually to no avail. I have searched stack overflow and forums but still can’t resolve my issue. I’m on windows 10.

Here is my code + compile error. It seems to fail on make.

#include <iostream>
using namespace std;

int main()
{
    cout << "Hello World!";
    return 0;
}

#Compile Log:

Compiler: Default compiler
Building Makefile: "C:Dev-CppProjectsMakefile.win"
Executing  make...
make.exe -f "C:Dev-CppProjectsMakefile.win" all
g++.exe -c project2.cpp -o project2.o -I"C:/Dev-Cpp/lib/gcc/mingw32/3.4.2/include"  -I"C:/Dev-Cpp/include/c++/3.4.2/backward"  -I"C:/Dev-Cpp/include/c++/3.4.2/mingw32"  -I"C:/Dev-Cpp/include/c++/3.4.2"  -I"C:/Dev-Cpp/include"   

make.exe: *** [project2.o] Error -1073741674

Execution terminated

Thanks for the help, this is starting to get stressful.

Содержание

  1. Dev cpp error 1073741674
  2. Answered by:
  3. Question
  4. Answers
  5. Dev cpp error 1073741674
  6. Лучший отвечающий
  7. Вопрос
  8. Ответы
  9. Dev-C++ Discussion
  10. Open Source C & C++ IDE for Windows
  11. Forums
  12. Build Error
  13. Dev-C++ — [Build Error] [main.o] Error 1 — Page 2

Dev cpp error 1073741674

This forum has migrated to Microsoft Q&A. Visit Microsoft Q&A to post new questions.

Answered by:

Question

I am not able to build even a simple c++ project in my Visual studio 2010 error.

Here is the build log:

1>—— Build started: Project: test, Configuration: Release Win32 ——
1>Build started 7/20/2012 11:23:25 AM.
1>InitializeBuildStatus:
1> Touching «Releasetest.unsuccessfulbuild».
1>Link:
1> test.vcxproj -> E:test.exe
1>C:Program FilesMSBuildMicrosoft.Cppv4.0Microsoft.CppCommon.targets(574,5): error MSB6006: «mt.exe» exited with code -1073741674.
1>
1>Build FAILED.
1>
1>Time Elapsed 00:00:07.27
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

Could someone please suggest a solution for this? I have already tried re-installing, but the problem persisted.

Answers

I found a workaround is to uninstall the «Application and Device Control» component of (S)ymantec (E)ndpoint (P)rotection OR possibly configure an Application Control policy in SEP that won’t interfere with Visual Studio.

Where you can find it from

I hope it can help you.

Ego [MSFT]
MSDN Community Support | Feedback to us

Источник

Dev cpp error 1073741674

Лучший отвечающий

Вопрос

I am not able to build even a simple c++ project in my Visual studio 2010 error.

Here is the build log:

1>—— Build started: Project: test, Configuration: Release Win32 ——
1>Build started 7/20/2012 11:23:25 AM.
1>InitializeBuildStatus:
1> Touching «Releasetest.unsuccessfulbuild».
1>Link:
1> test.vcxproj -> E:test.exe
1>C:Program FilesMSBuildMicrosoft.Cppv4.0Microsoft.CppCommon.targets(574,5): error MSB6006: «mt.exe» exited with code -1073741674.
1>
1>Build FAILED.
1>
1>Time Elapsed 00:00:07.27
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

Could someone please suggest a solution for this? I have already tried re-installing, but the problem persisted.

Ответы

I found a workaround is to uninstall the «Application and Device Control» component of (S)ymantec (E)ndpoint (P)rotection OR possibly configure an Application Control policy in SEP that won’t interfere with Visual Studio.

Where you can find it from

I hope it can help you.

Ego [MSFT]
MSDN Community Support | Feedback to us

Источник

Dev-C++ Discussion

Open Source C & C++ IDE for Windows

Forums

Build Error

having this problem of compiling it gives:

[Build Error] [main4.o] Error 1

what does that mean and how should you solve the problem?

It would help us to help you if you gave a full compile log as well as the code you were tring to compile.
*Note that the «Read This» thread http://sourceforge.net/forum/forum.php?thread_id=959971&forum_id=48211 may contain your answer.

Do you normally call up the doctor and say «I’m don’t feel good, whats wrong with me?» That is about as much information that you have given. You should really check out the thread titled «Read This Before Asking a Question», the part talking about how to formulate a decent question.

Basic information for a question like yours
(1) What version number of Dev are you using, with what OS?
(2) Provide a simple example program that shows the effect you are seeing. Simple as possible.
(3) Provide your FULL compile log, not just the errors. The compile log is on the tab labeled «Compile Log», and the right mouse button brings up the copy menu.

Providing this basic information keeps down our bill at the psychic hotline.

Happendes when create a projectfile .dev that is and wan to compile like for example:

using namespace std;

The version is the latest 4.9.8.5 . and I use Xp and it worked well before.

Compiler: Default compiler
Building Makefile: «C:Documents and SettingsMilad (private)SkrivbordMakefile.win»
Executing make.
make.exe -f «C:Documents and SettingsMilad (private)SkrivbordMakefile.win» all
g++.exe -c main01.cpp -o main01.o -I»C:/Program/Dev-Cpp/include/c++» -I»C:/Program/Dev-Cpp/include/c++/mingw32″ -I»C:/Program/Dev-Cpp/include/c++/backward» -I»C:/Program/Dev-Cpp/include»

1MILAD r inte ett internt kommando, externt kommando,
program eller kommandofil.

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

Compiler: Default compiler
Building Makefile: «C:Documents and SettingsMilad (private)SkrivbordMakefile.win»
Executing make.
make.exe -f «C:Documents and SettingsMilad (private)SkrivbordMakefile.win» all
g++.exe -c main01.cpp -o main01.o -I»C:/Program/Dev-Cpp/include/c++» -I»C:/Program/Dev-Cpp/include/c++/mingw32″ -I»C:/Program/Dev-Cpp/include/c++/backward» -I»C:/Program/Dev-Cpp/include»

1MILAD r inte ett internt kommando, externt kommando,
program eller kommandofil.

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

DId you read the «Read This Before Posting» thread?

You’re building things in a directory structure that has spaces. Don’t do that.

Watson (the pencil neck) Davis

«C:Documents and SettingsMilad (private)SkrivbordMakefile.win»

Don’t put your projects in directories with spaces in them, like all the spaces here.

Oh, I missed something obvious:

It looks like you tried to install Dev in «Program Files», but it did not parse right:

You need to go to the «Read This Before Asking A Question» thread, and follow the directions to uninstall/delete/reinstall

Follow them with EXTREME care. You have XP, so some files are in hidden directories.

Install Dev where it asks to go, c:dev-cpp — NOT «Program Files»

Источник

Dev-C++ — [Build Error] [main.o] Error 1 — Page 2

I was having the exact same error, I fixed it by going into compiler options and taking out the check out of Add these commands to the linker command line. I don’t know if you have anything in there but it works now for me. I’ve also been having a lot of problems with the Compiler not being able to create the Makefile.win but I think I’ve fixed that by putting an empty ‘build’ folder in the same directory as the project.

i get the same error even with dev’s example projects, dev 4 works and dev 4.9.9.2 works on my bad comp which runs win95 i checked the path and its there and it works, i would like to use dev and getting some of the other compilers isn’t really an option cos i still have dial up til i get a job and some compilers would take ages to download

could someone maybe post the same project compile log and makefile

I have exact the same problem. The funny thing is: If I save my project «directly» on any hard drive (C:, D:, E: . ) everything works fine, but as soon as I save the project in any folder (ie C:newfolder), then I get the «Dev-C++ — [Build Error] [main.o] Error 1» error.

This is pretty strange, no?
I followed all the tips provided in this thread but to no avail :/ .

Anyone here knows any other solution?

Sorry, old post, but I figured out the reason for this problem (at least in my case). The liballeg.a file that is linked to under project options/parameters is RELATIVE to the project file. So if the project file is moved, you have to erase the linker settings under parameters, and redo them. In my case I had the project file in the devcpp directory, worked fine, then I moved it into devcppprojects, got the error. The linker was set to libliballeg.a, had to change it then to ….libliballeg.a. Hope this helps people out,
GOD

I had the Error 1 message but no other message in the compile log. I got the Error 1 each time I created a target, no matter if it was the final .exe or an intermediate .o. If I compiled again, the error would not show, so compiling twice was a solution. Annoying one.

I tried most of the things reported in this thread, but could not solve it.

As a random test (in fact, I kind of remembered solving the same problem in the past) I changed configuration so to use a different GNU make and solved the problem.

The problem showed with GNU make 3.8 and didn’t show with GNU make 3.79.1

I had the same problem, for me just moving the cc1 file into the same folder as the Makefile.win file solved the problem

Hey i was also suffering that problem when i came upon your thread, and i found however , when out of nowhere my brain said why did this work yesterday and not today, the answer is i had started a windows project today instead of a console application and that was giving me the error you had, alough i actually wanted a console program in the first place.

i have some suspicion to believe that dev c++ is not very happy to work with windows programs, you could try opening a console application templace project, then clear the main.cpp.
with this blank main.cpp paste your original main code and relink you other project files, its a wild guess but it might just work for you, my theory being that there is a problem with the default template for a windows program.

if that works id love it if you could message me back if not . sorry

also if you understand my confused talking here you are doing very well.

I am having the same issue.

I am using XP on campus. The msg is as follows

‘\ls5-central.lab.cpcc.eduhomezperkin0Dev-Cpp’
CMD.EXE was started with the above path as the current directory.
UNC paths are not supported. Defaulting to Windows directory.

g++.exe: grade1.cpp: No such file or directory

g++.exe: no input files

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

The only thing im concerned about there, is why are you using dos to complie when dev cpp has a very useful compilers which uses makefiles (which are a godsend in bigger projects)

ive never used g++ in cmd so im not sure what the correct syntax for it is, however if its declaring file not found then the only thing i can think of is , are your source files your trying to compile actually in that directory (seems a silly question but ive seen it happen)

I have done this successfully.

Say your Dev C++ is in C drive of Windows (C:Dev-Cpp)

Copy following text to Tools >> Compiler Options >> Directories >> Binaries and click OK.

Hope this helps.

I will tell you about a problem similar to yours and how I could handle it.
I tried to compile and run Hello World as it follows:

And I got the following compile log:

Compiler: Default compiler
Executing gcc.exe.
gcc.exe «C:UsersjordankaDocumentsUchebni resursiÊîìïþòúðíà ãðàôèêàComputer GraphicSource Computer GraphicsKG_Main.c» -o «C:UsersjordankaDocumentsUchebni resursiÊîìïþòúðíà ãðàôèêàComputer GraphicSource Computer GraphicsKG_Main.exe» -I»C:Dev-Cppinclude» -L»C:Dev-Cpplib»
C:UsersjordankaDocumentsUchebni resursiÊîìïþòúðíà ãðàôèêàComputer GraphicSource Computer GraphicsKG_Main.c:1:20: iostream: No such file or directory
C:UsersjordankaDocumentsUchebni resursiÊîìïþòúðíà ãðàôèêàComputer GraphicSource Computer GraphicsKG_Main.c:3: error: syntax error before «namespace»
C:UsersjordankaDocumentsUchebni resursiÊîìïþòúðíà ãðàôèêàComputer GraphicSource Computer GraphicsKG_Main.c:3: warning: data definition has no type or storage class

C:UsersjordankaDocumentsUchebni resursiÊîìïþòúðíà ãðàôèêàComputer GraphicSource Computer GraphicsKG_Main.c: In function `main’:
C:UsersjordankaDocumentsUchebni resursiÊîìïþòúðíà ãðàôèêàComputer GraphicSource Computer GraphicsKG_Main.c:11: error: `cout’ undeclared (first use in this function)
C:UsersjordankaDocumentsUchebni resursiÊîìïþòúðíà ãðàôèêàComputer GraphicSource Computer GraphicsKG_Main.c:11: error: (Each undeclared identifier is reported only once
C:UsersjordankaDocumentsUchebni resursiÊîìïþòúðíà ãðàôèêàComputer GraphicSource Computer GraphicsKG_Main.c:11: error: for each function it appears in.)
C:UsersjordankaDocumentsUchebni resursiÊîìïþòúðíà ãðàôèêàComputer GraphicSource Computer GraphicsKG_Main.c:11: error: stray ‘147’ in program

C:UsersjordankaDocumentsUchebni resursiÊîìïþòúðíà ãðàôèêàComputer GraphicSource Computer GraphicsKG_Main.c:11: error: `Hello’ undeclared (first use in this function)
C:UsersjordankaDocumentsUchebni resursiÊîìïþòúðíà ãðàôèêàComputer GraphicSource Computer GraphicsKG_Main.c:11: error: syntax error before «World»
C:UsersjordankaDocumentsUchebni resursiÊîìïþòúðíà ãðàôèêàComputer GraphicSource Computer GraphicsKG_Main.c:11: error: stray ‘148’ in program

And this is what I did.

My Dev-cpp folder is in C as it must be. I created a folder «CPP_Programs» in it where I put my projects and treir files used by the program as someone here suggested.
I created a new project and added the file to it. Then I selected the file and entered alt+p. Went to Parameters tab and entered in the linkers field exactly this:

-lbgi
-lgdi32
-lcomdlg32
-luuid
-loleaut32
-lole32
-L «C:/Dev-Cpp/lib»
-L «C:/Dev-Cpp/include»

And it was just ok as the compiler log said :

Compiler: Default compiler
Building Makefile: «C:Dev-CppCPP_ProgramsMakefile.win»
Executing make.
make.exe -f «C:Dev-CppCPP_ProgramsMakefile.win» all
g++.exe -c «hello world.cpp» -o «hello world.o» -I»C:/Dev-Cpp/lib/gcc/mingw32/3.4.2/include» -I»C:/Dev-Cpp/include/c++/3.4.2/backward» -I»C:/Dev-Cpp/include/c++/3.4.2/mingw32″ -I»C:/Dev-Cpp/include/c++/3.4.2″ -I»C:/Dev-Cpp/include»

g++.exe «hello world.o» -o «hello_world.exe» -L»C:/Dev-Cpp/lib» -lbgi -lgdi32 -lcomdlg32 -luuid -loleaut32 -lole32 -L «C:/Dev-Cpp/lib» -L «C:/Dev-Cpp/include»

Execution terminated
Compilation successful

I believe this will be helpful.
Decided to share it with you as your topic helped me to figured it out as well as my colleage’s help. Thank God!

Источник

>
Dev-C++ — не хочет компилять

  • Подписаться на тему
  • Сообщить другу
  • Скачать/распечатать тему



Сообщ.
#1

,
08.06.03, 16:06

    Full Member

    ***

    Рейтинг (т): 2

    Dev-C++ Совершенно не хочет компилить никакие проекты.
    При попытке откомпилить проект(msdos app) оно грит:
    Compiler: Default compiler
    Building Makefile: «F:Program FilesDev-CppProjectsDOSMakefile.win»
    Executing  make…
    make.exe -f «F:Program FilesDev-CppProjectsDOSMakefile.win» all
    g++.exe -c main.cpp -o main.o -I»F:/Program Files/Dev-Cpp/include/c++»  -I»F:/Program Files/Dev-Cpp/include/c++/mingw32″  -I»F:/Program Files/Dev-Cpp/include/c++/backward»  -I»F:/Program Files/Dev-Cpp/include»  

    «F:DOCUME~1Smoke» ­¥ ï¥âáï ¢­ãâ७­¥© ¨«¨ ¢­¥è­¥©
    ª®¬ ­¤®©, ¨á¯®«­ï¥¬®© ¯à®£à ¬¬®© ¨«¨ ¯ ª¥â­ë¬ ä ©«®¬.

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

    Execution terminated

    и так всегда   :(

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


    nnn



    Сообщ.
    #2

    ,
    09.06.03, 04:25

      Ты бы код проекта полностью привел…
      И Dev-Cpp какой версии?


      Zmoukie



      Сообщ.
      #3

      ,
      09.06.03, 10:38

        Full Member

        ***

        Рейтинг (т): 2

        версия — Dev-C++ 4.9.8.0.
        проект создавал через file->new->project->winapp

        ExpandedWrap disabled

          <br>#include <windows.h><br><br>/*  Declare Windows procedure  */<br>LRESULT CALLBACK WindowProcedure (HWND, UINT, WPARAM, LPARAM);<br><br>/*  Make the class name into a global variable  */<br>char szClassName[ ] = «WindowsApp»;<br><br>int WINAPI WinMain (HINSTANCE hThisInstance,<br>                    HINSTANCE hPrevInstance,<br>                    LPSTR lpszArgument,<br>                    int nFunsterStil)<br><br>{<br>    HWND hwnd;               /* This is the handle for our window */<br>    MSG messages;            /* Here messages to the application are saved */<br>    WNDCLASSEX wincl;        /* Data structure for the windowclass */<br><br>    /* The Window structure */<br>    wincl.hInstance = hThisInstance;<br>    wincl.lpszClassName = szClassName;<br>    wincl.lpfnWndProc = WindowProcedure;      /* This function is called by windows */<br>    wincl.style = CS_DBLCLKS;                 /* Catch double-clicks */<br>    wincl.cbSize = sizeof (WNDCLASSEX);<br><br>    /* Use default icon and mouse-pointer */<br>    wincl.hIcon = LoadIcon (NULL, IDI_APPLICATION);<br>    wincl.hIconSm = LoadIcon (NULL, IDI_APPLICATION);<br>    wincl.hCursor = LoadCursor (NULL, IDC_ARROW);<br>    wincl.lpszMenuName = NULL;                 /* No menu */<br>    wincl.cbClsExtra = 0;                      /* No extra bytes after the window class */<br>    wincl.cbWndExtra = 0;                      /* structure or the window instance */<br>    /* Use Windows’s default color as the background of the window */<br>    wincl.hbrBackground = (HBRUSH) COLOR_BACKGROUND;<br><br>    /* Register the window class, and if it fails quit the program */<br>    if (!RegisterClassEx (&wincl))<br>        return 0;<br><br>    /* The class is registered, let’s create the program*/<br>    hwnd = CreateWindowEx (<br>           0,                   /* Extended possibilites for variation */<br>           szClassName,         /* Classname */<br>           «Windows App»,       /* Title Text */<br>           WS_OVERLAPPEDWINDOW, /* default window */<br>           CW_USEDEFAULT,       /* Windows decides the position */<br>           CW_USEDEFAULT,       /* where the window ends up on the screen */<br>           544,                 /* The programs width */<br>           375,                 /* and height in pixels */<br>           HWND_DESKTOP,        /* The window is a child-window to desktop */<br>           NULL,                /* No menu */<br>           hThisInstance,       /* Program Instance handler */<br>           NULL                 /* No Window Creation data */<br>           );<br><br>    /* Make the window visible on the screen */<br>    ShowWindow (hwnd, nFunsterStil);<br><br>    /* Run the message loop. It will run until GetMessage() returns 0 */<br>    while (GetMessage (&messages, NULL, 0, 0))<br>    {<br>        /* Translate virtual-key messages into character messages */<br>        TranslateMessage(&messages);<br>        /* Send message to WindowProcedure */<br>        DispatchMessage(&messages);<br>    }<br><br>    /* The program return-value is 0 — The value that PostQuitMessage() gave */<br>    return messages.wParam;<br>}<br><br><br>/*  This function is called by the Windows function DispatchMessage()  */<br><br>LRESULT CALLBACK WindowProcedure (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)<br>{<br>    switch (message)                  /* handle the messages */<br>    {<br>        case WM_DESTROY:<br>            PostQuitMessage (0);       /* send a WM_QUIT to the message queue */<br>            break;<br>        default:                      /* for messages that we don’t deal with */<br>            return DefWindowProc (hwnd, message, wParam, lParam);<br>    }<br><br>    return 0;<br>}<br>

        в закладке compiler пишет «f:dev-cppprojectsproject1makefile.win [buils error] [main.o] Error1»

        меня тревожит этот «main.o» — что это за файл и че там должно быть?
        компилер его сам не создает(хотя, по-моему должен), а если попробовать создать самому, то тада выдает другую ошибку: » F:Dev-CppProjectsProject1Makefile.win
        [Build Error]  [Project1.exe] Error 1″


        nnn



        Сообщ.
        #4

        ,
        09.06.03, 10:55

          main.o — объектный файл, генерируемый компилятором, потом он линкуется в твоем случае в экзешник…
          А у тебя в project->options->files включен файл main.cpp — ведь его текст ты и привел в топике… ???


          Zmoukie



          Сообщ.
          #5

          ,
          09.06.03, 11:25

            Full Member

            ***

            Рейтинг (т): 2

            все включено (include in compilation, include in linking).
            не представляю, в чем проблема все настройки уже раз сто облазил  🙁
            а у тя с первого раза все завелось?


            Zmoukie



            Сообщ.
            #6

            ,
            09.06.03, 17:50

              Full Member

              ***

              Рейтинг (т): 2

              что самое удивительное — 4ый devcpp работает без проблем!


              nnn



              Сообщ.
              #7

              ,
              10.06.03, 04:27

                Да. без проблем…
                У тебя пути к c:dev-Cppinclude и ..lib прописаны в проекте?


                nnn



                Сообщ.
                #8

                ,
                10.06.03, 05:03

                  Могу тебе заслать готовый проект под Dev-Cpp


                  Zmoukie



                  Сообщ.
                  #9

                  ,
                  10.06.03, 10:26

                    Full Member

                    ***

                    Рейтинг (т): 2

                    Все прописал, та же фигня. четвертый работает на ура, а пятый не хочет.
                    кинь тада проект на sm0k3@mail.ru

                    Сообщение отредактировано: Smoke — 10.06.03, 10:27


                    Zmoukie



                    Сообщ.
                    #10

                    ,
                    10.06.03, 10:43

                      Full Member

                      ***

                      Рейтинг (т): 2

                      Ха! если создавать не проект, а просто отдельный цпп-файл, то все компилится! Бредятина какая-то  ??? >:(

                      Guru

                      ElcnU



                      Сообщ.
                      #11

                      ,
                      21.07.16, 15:23

                        Moderator

                        *******

                        Рейтинг (т): 823

                        !

                        уже не актуально.
                        Хватит флудить

                        0 пользователей читают эту тему (0 гостей и 0 скрытых пользователей)

                        0 пользователей:

                        • Предыдущая тема
                        • Visual C++ / MFC / WTL
                        • Следующая тема

                        [ Script execution time: 0,0964 ]   [ 16 queries used ]   [ Generated: 28.01.23, 18:04 GMT ]  

                        • Remove From My Forums
                        • Вопрос

                        • Hi,

                          I am not able to build even a simple c++ project in my Visual studio 2010 error.

                          Here is the build log:

                          1>—— Build started: Project: test, Configuration: Release Win32 ——
                          1>Build started 7/20/2012 11:23:25 AM.
                          1>InitializeBuildStatus:
                          1>  Touching «Releasetest.unsuccessfulbuild».
                          1>Link:
                          1>  test.vcxproj -> E:test.exe
                          1>C:Program FilesMSBuildMicrosoft.Cppv4.0Microsoft.CppCommon.targets(574,5): error MSB6006: «mt.exe» exited with code -1073741674.
                          1>
                          1>Build FAILED.
                          1>
                          1>Time Elapsed 00:00:07.27
                          ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

                          Could someone please suggest a solution for this? I have already tried re-installing, but the problem persisted.

                        Ответы

                          • Помечено в качестве ответа

                            27 июля 2012 г. 9:47

                        almarc

                        0 / 0 / 1

                        Регистрация: 12.10.2015

                        Сообщений: 54

                        1

                        01.05.2017, 19:29. Показов 18612. Ответов 10

                        Метки нет (Все метки)


                        Код:

                        C++
                        1
                        2
                        3
                        4
                        5
                        6
                        7
                        8
                        9
                        10
                        11
                        12
                        13
                        14
                        15
                        16
                        17
                        18
                        19
                        20
                        21
                        22
                        23
                        24
                        25
                        26
                        27
                        28
                        29
                        
                        #include <iostream>
                        using std::cout;
                        using std::cin;
                        using std::endl;
                         
                        int main(int argc, char** argv) 
                        { 
                        cout << "Enter num1 +-/* num2" << endl;
                        int x, y;
                        char r;
                        cin >> x >> r >> y;
                            if (r=='+')
                            {
                                cout << x + y << endl;
                            }
                            else if (r=='-')
                            {
                                cout << x - y << endl;
                            }
                            else if (r=='/')
                            {
                                cout << x / y << endl;
                            }
                            else if (r=='*')
                            {
                                cout << x * y << endl;
                            }
                            system ("pause");
                        }

                        При попытке скомпилировать, говорит:
                        cannot open output file Project 4.exe: Permission denied
                        [Error] ld returned 1 exit status
                        recipe for target ‘4.exe»‘ failed

                        После чего открывается файл «Makefile.win», с текстом:

                        C++
                        1
                        2
                        3
                        4
                        5
                        6
                        7
                        8
                        9
                        10
                        11
                        12
                        13
                        14
                        15
                        16
                        17
                        18
                        19
                        20
                        21
                        22
                        23
                        24
                        25
                        26
                        27
                        28
                        
                        # Project: Project 4
                        # Makefile created by Dev-C++ 5.11
                         
                        CPP      = g++.exe
                        CC       = gcc.exe
                        WINDRES  = windres.exe
                        OBJ      = E:/main.o
                        LINKOBJ  = E:/main.o
                        LIBS     = -L"C:/Program Files (x86)/Dev-Cpp/MinGW64/x86_64-w64-mingw32/lib32" -static-libgcc -m32
                        INCS     = -I"C:/Program Files (x86)/Dev-Cpp/MinGW64/include" -I"C:/Program Files (x86)/Dev-Cpp/MinGW64/x86_64-w64-mingw32/include" -I"C:/Program Files (x86)/Dev-Cpp/MinGW64/lib/gcc/x86_64-w64-mingw32/4.9.2/include"
                        CXXINCS  = -I"C:/Program Files (x86)/Dev-Cpp/MinGW64/include" -I"C:/Program Files (x86)/Dev-Cpp/MinGW64/x86_64-w64-mingw32/include" -I"C:/Program Files (x86)/Dev-Cpp/MinGW64/lib/gcc/x86_64-w64-mingw32/4.9.2/include" -I"C:/Program Files (x86)/Dev-Cpp/MinGW64/lib/gcc/x86_64-w64-mingw32/4.9.2/include/c++"
                        BIN      = "Project 4.exe"
                        CXXFLAGS = $(CXXINCS) -m32
                        CFLAGS   = $(INCS) -m32
                        RM       = rm.exe -f
                         
                        .PHONY: all all-before all-after clean clean-custom
                         
                        all: all-before $(BIN) all-after
                         
                        clean: clean-custom
                            ${RM} $(OBJ) $(BIN)
                         
                        $(BIN): $(OBJ)
                            $(CPP) $(LINKOBJ) -o $(BIN) $(LIBS)
                         
                        E:/main.o: E:/main.cpp
                            $(CPP) -c E:/main.cpp -o E:/main.o $(CXXFLAGS)

                        При этом, строка:

                        $(CPP) $(LINKOBJ) -o $(BIN) $(LIBS)

                        Подсвечивается красным.

                        Редактор: Dev-C++. В чем может быть дело? Несколько раз программа запустилась нормально, потом это.

                        __________________
                        Помощь в написании контрольных, курсовых и дипломных работ, диссертаций здесь



                        0



                        Programming

                        Эксперт

                        94731 / 64177 / 26122

                        Регистрация: 12.04.2006

                        Сообщений: 116,782

                        01.05.2017, 19:29

                        10

                        284 / 232 / 114

                        Регистрация: 07.09.2016

                        Сообщений: 584

                        01.05.2017, 19:50

                        2

                        у вас там от предыдущих запусков не осталось висячих процессов «Project 4.exe»? если остались — их надо прибить. может дело в том, что иде не может редактировать екзешник, потому что процесс запущен и винда залочила этот файл на изменения.



                        0



                        0 / 0 / 1

                        Регистрация: 12.10.2015

                        Сообщений: 54

                        01.05.2017, 20:03

                         [ТС]

                        3

                        Нет, но через некоторое время файл удаляется и я снова могу его компилировать. При попытке новой компиляции снова эта ошибка на какое-то время.



                        0



                        284 / 232 / 114

                        Регистрация: 07.09.2016

                        Сообщений: 584

                        01.05.2017, 20:09

                        4

                        ну значит кто-то держит этот екзешник. почему и кто — хз. в момент появления ошибки бегите к файлу и попробуйте удалить. если не удаляется — значит точно кто-то держит. попробовать понять, кто его держит можно чем-нибудь типа процессмонитора https://technet.microsoft.com/… 96645.aspx. может это антивирус, может еще кто, а может процесс все-таки висит и ждет нажатия эникея судя по последней строке вашего кода.



                        0



                        0 / 0 / 1

                        Регистрация: 12.10.2015

                        Сообщений: 54

                        01.05.2017, 20:22

                         [ТС]

                        5

                        Антивируса нет, держать ничего, кроме самого cpp, не может.
                        Кстати, заметил, что при закрытии консоли при первом нажатии консоль пишет время закрытия, и нужно нажать еще раз, чтобы программа закрылась. Раньше такого не было.



                        0



                        284 / 232 / 114

                        Регистрация: 07.09.2016

                        Сообщений: 584

                        01.05.2017, 20:26

                        6

                        ну раз «держать ничего, кроме самого cpp, не может» а файл что-то держит — остается одно: это происки дьявола. обратитесь в ближайшее отделение РПЦ за святой водой, попшикайте на клавиатуру. может поможет.



                        0



                        0 / 0 / 1

                        Регистрация: 12.10.2015

                        Сообщений: 54

                        01.05.2017, 20:46

                         [ТС]

                        7

                        Экзорцист оказался бессилен. Боюсь, придется обратится к аккаунту с правами….. АДМИНИСТРАТОРА!
                        Мало ли, может у меня доступа нет, надо с админского аккаунта зайти.



                        0



                        Z1qqO

                        1 / 1 / 1

                        Регистрация: 20.07.2017

                        Сообщений: 32

                        12.01.2018, 01:31

                        8

                        Точно такая же ошибка возникает и у меня: в основном, она появляется тогда, когда, «серфируя» по интернету в поисках и изучении наличия хороших кодов и программ, я, отыскивая такой код, копирую его и вставляю в свой главного файла с функцией main. Обычно код, скопированный, в котором содержатся обычные управляющие операторы, арифметические операции и прочие начальные вещи — не конфликтует с компилятором. Но если же в коде, который я пытаюсь «скопипастить», присутствуют различного рода функции не совсем известного мне описания (код представлен ниже), то выдается такая же ошибка линковщика (компоновщика) — $(CPP) $(LINKOBJ) -o $(BIN) $(LIBS)

                        C++
                        1
                        2
                        3
                        4
                        5
                        6
                        7
                        8
                        9
                        10
                        11
                        
                        POINT op;
                            HWND hWnd=GetConsoleWindow();
                            HDC hDC=GetDC(hWnd);
                            SelectObject(hDC,GetStockObject(WHITE_PEN));   // СКОПИРОВАННЫЙ КОД
                         
                            MoveToEx(hDC,50,50,&op);
                            LineTo(hDC,100,200);
                         
                            ReleaseDC(hWnd,hDC);
                            std::cin.get();
                            return 0;

                        C++
                        1
                        2
                        3
                        4
                        5
                        6
                        7
                        8
                        9
                        10
                        11
                        12
                        13
                        14
                        15
                        16
                        17
                        18
                        19
                        20
                        21
                        22
                        23
                        24
                        25
                        26
                        27
                        28
                        29
                        30
                        31
                        32
                        33
                        34
                        35
                        36
                        37
                        38
                        
                        # Project: Проект1
                        # Makefile created by Dev-C++ 5.11
                         
                        CPP      = g++.exe
                        CC       = gcc.exe
                        WINDRES  = windres.exe
                        RES      = ../Project2/Project1_private.res
                        OBJ      = ../Project2/main.o ../Project2/GradeBook.o ../Project2/Account.o $(RES)
                        LINKOBJ  = ../Project2/main.o ../Project2/GradeBook.o ../Project2/Account.o $(RES)
                        LIBS     = -L"D:/Program Files/Dev-Cpp/MinGW64/lib32" -L"D:/Program Files/Dev-Cpp/MinGW64/x86_64-w64-mingw32/lib32" -static-libgcc -m32
                        INCS     = -I"D:/Program Files/Dev-Cpp/MinGW64/include" -I"D:/Program Files/Dev-Cpp/MinGW64/x86_64-w64-mingw32/include" -I"D:/Program Files/Dev-Cpp/MinGW64/lib/gcc/x86_64-w64-mingw32/4.9.2/include"
                        CXXINCS  = -I"D:/Program Files/Dev-Cpp/MinGW64/include" -I"D:/Program Files/Dev-Cpp/MinGW64/x86_64-w64-mingw32/include" -I"D:/Program Files/Dev-Cpp/MinGW64/lib/gcc/x86_64-w64-mingw32/4.9.2/include" -I"D:/Program Files/Dev-Cpp/MinGW64/lib/gcc/x86_64-w64-mingw32/4.9.2/include/c++"
                        BIN      = Project1.exe
                        CXXFLAGS = $(CXXINCS) -m32
                        CFLAGS   = $(INCS) -m32
                        RM       = rm.exe -f
                         
                        .PHONY: all all-before all-after clean clean-custom
                         
                        all: all-before $(BIN) all-after
                         
                        clean: clean-custom
                            ${RM} $(OBJ) $(BIN)            
                         
                        $(BIN): $(OBJ)
                            $(CPP) $(LINKOBJ) -o $(BIN) $(LIBS)
                         
                        ../Project2/main.o: main.cpp
                            $(CPP) -c main.cpp -o ../Project2/main.o $(CXXFLAGS)
                         
                        ../Project2/GradeBook.o: GradeBook.cpp
                            $(CPP) -c GradeBook.cpp -o ../Project2/GradeBook.o $(CXXFLAGS)
                         
                        ../Project2/Account.o: Account.cpp
                            $(CPP) -c Account.cpp -o ../Project2/Account.o $(CXXFLAGS)
                         
                        ../Project2/Project1_private.res: Project1_private.rc 
                            $(WINDRES) -i Project1_private.rc -F pe-i386 --input-format=rc -o ../Project2/Project1_private.res -O coff

                        Миниатюры

                        Странная ошибка makefile.win
                         



                        0



                        Z1qqO

                        1 / 1 / 1

                        Регистрация: 20.07.2017

                        Сообщений: 32

                        12.01.2018, 01:32

                        9

                        Точно такая же ошибка возникает и у меня: в основном, она появляется тогда, когда, «серфируя» по интернету в поисках и изучении наличия хороших кодов и программ, я, отыскивая такой код, копирую его и вставляю в свой главного файла с функцией main. Обычно код, скопированный, в котором содержатся обычные управляющие операторы, арифметические операции и прочие начальные вещи — не конфликтует с компилятором. Но если же в коде, который я пытаюсь «скопипастить», присутствуют различного рода функции не совсем известного мне описания (код представлен ниже), то выдается такая же ошибка линковщика (компоновщика) — $(CPP) $(LINKOBJ) -o $(BIN) $(LIBS)

                        C++
                        1
                        2
                        3
                        4
                        5
                        6
                        7
                        8
                        9
                        10
                        11
                        
                        POINT op;
                            HWND hWnd=GetConsoleWindow();
                            HDC hDC=GetDC(hWnd);
                            SelectObject(hDC,GetStockObject(WHITE_PEN));   // СКОПИРОВАННЫЙ КОД
                         
                            MoveToEx(hDC,50,50,&op);
                            LineTo(hDC,100,200);
                         
                            ReleaseDC(hWnd,hDC);
                            std::cin.get();
                            return 0;

                        C++
                        1
                        2
                        3
                        4
                        5
                        6
                        7
                        8
                        9
                        10
                        11
                        12
                        13
                        14
                        15
                        16
                        17
                        18
                        19
                        20
                        21
                        22
                        23
                        24
                        25
                        26
                        27
                        28
                        29
                        30
                        31
                        32
                        33
                        34
                        35
                        36
                        37
                        38
                        
                        # Project: Проект1
                        # Makefile created by Dev-C++ 5.11
                         
                        CPP      = g++.exe
                        CC       = gcc.exe
                        WINDRES  = windres.exe
                        RES      = ../Project2/Project1_private.res
                        OBJ      = ../Project2/main.o ../Project2/GradeBook.o ../Project2/Account.o $(RES)
                        LINKOBJ  = ../Project2/main.o ../Project2/GradeBook.o ../Project2/Account.o $(RES)
                        LIBS     = -L"D:/Program Files/Dev-Cpp/MinGW64/lib32" -L"D:/Program Files/Dev-Cpp/MinGW64/x86_64-w64-mingw32/lib32" -static-libgcc -m32
                        INCS     = -I"D:/Program Files/Dev-Cpp/MinGW64/include" -I"D:/Program Files/Dev-Cpp/MinGW64/x86_64-w64-mingw32/include" -I"D:/Program Files/Dev-Cpp/MinGW64/lib/gcc/x86_64-w64-mingw32/4.9.2/include"
                        CXXINCS  = -I"D:/Program Files/Dev-Cpp/MinGW64/include" -I"D:/Program Files/Dev-Cpp/MinGW64/x86_64-w64-mingw32/include" -I"D:/Program Files/Dev-Cpp/MinGW64/lib/gcc/x86_64-w64-mingw32/4.9.2/include" -I"D:/Program Files/Dev-Cpp/MinGW64/lib/gcc/x86_64-w64-mingw32/4.9.2/include/c++"
                        BIN      = Project1.exe
                        CXXFLAGS = $(CXXINCS) -m32
                        CFLAGS   = $(INCS) -m32
                        RM       = rm.exe -f
                         
                        .PHONY: all all-before all-after clean clean-custom
                         
                        all: all-before $(BIN) all-after
                         
                        clean: clean-custom
                            ${RM} $(OBJ) $(BIN)                                                                       // КОД ЛИНКОВЩИКА ПОСЛЕ КОМПИЛЯЦИИ
                         
                        $(BIN): $(OBJ)
                            $(CPP) $(LINKOBJ) -o $(BIN) $(LIBS)
                         
                        ../Project2/main.o: main.cpp
                            $(CPP) -c main.cpp -o ../Project2/main.o $(CXXFLAGS)
                         
                        ../Project2/GradeBook.o: GradeBook.cpp
                            $(CPP) -c GradeBook.cpp -o ../Project2/GradeBook.o $(CXXFLAGS)
                         
                        ../Project2/Account.o: Account.cpp
                            $(CPP) -c Account.cpp -o ../Project2/Account.o $(CXXFLAGS)
                         
                        ../Project2/Project1_private.res: Project1_private.rc 
                            $(WINDRES) -i Project1_private.rc -F pe-i386 --input-format=rc -o ../Project2/Project1_private.res -O coff



                        0



                        6 / 3 / 0

                        Регистрация: 19.03.2019

                        Сообщений: 145

                        14.06.2019, 19:06

                        10

                        Цитата
                        Сообщение от almarc
                        Посмотреть сообщение

                        Кстати, заметил, что при закрытии консоли при первом нажатии консоль пишет время закрытия, и нужно нажать еще раз, чтобы программа закрылась. Раньше такого не было.

                        В Dev-C++ откомпилированный код открывается не просто так, а через ConsolePauser.exe. Он сначала выполняет программу, а после её завершения выводит время выполнения и возвращённое значение и ждёт нажатия любой клавиши.
                        В общем, скорее всего в настройках что-то поменяли.

                        Миниатюры

                        Странная ошибка makefile.win
                         

                        Странная ошибка makefile.win
                         



                        0



                        6 / 3 / 0

                        Регистрация: 19.03.2019

                        Сообщений: 145

                        15.06.2019, 13:18

                        11

                        Чтобы отключить эту функцию, перейди на Сервис -> Параметры среды и убери галочку с Pause console programs after return

                        Миниатюры

                        Странная ошибка makefile.win
                         

                        Изображения

                         



                        0



                        инструкции

                         

                        To Fix (Can’t run .exe files File system error (-1073741674) help please!) error you need to
                        follow the steps below:

                        Шаг 1:

                         
                        Download
                        (Can’t run .exe files File system error (-1073741674) help please!) Repair Tool
                           

                        Шаг 2:

                         
                        Нажмите «Scan» кнопка
                           

                        Шаг 3:

                         
                        Нажмите ‘Исправь все‘ и вы сделали!
                         

                        Совместимость:
                        Windows 10, 8.1, 8, 7, Vista, XP

                        Загрузить размер: 6MB
                        Требования: Процессор 300 МГц, 256 MB Ram, 22 MB HDD

                        Limitations:
                        This download is a free evaluation version. Full repairs starting at $19.95.

                        Can’t run .exe files File system error (-1073741674) help please! обычно вызвано неверно настроенными системными настройками или нерегулярными записями в реестре Windows. Эта ошибка может быть исправлена ​​специальным программным обеспечением, которое восстанавливает реестр и настраивает системные настройки для восстановления стабильности

                        If you have Can’t run .exe files File system error (-1073741674) help please! then we strongly recommend that you

                        Download (Can’t run .exe files File system error (-1073741674) help please!) Repair Tool.

                        This article contains information that shows you how to fix
                        Can’t run .exe files File system error (-1073741674) help please!
                        both
                        (manually) and (automatically) , In addition, this article will help you troubleshoot some common error messages related to Can’t run .exe files File system error (-1073741674) help please! that you may receive.

                        Примечание:
                        Эта статья была обновлено на 2023-01-22 и ранее опубликованный под WIKI_Q210794

                        Содержание

                        •   1. Meaning of Can’t run .exe files File system error (-1073741674) help please!?
                        •   2. Causes of Can’t run .exe files File system error (-1073741674) help please!?
                        •   3. More info on Can’t run .exe files File system error (-1073741674) help please!

                        Meaning of Can’t run .exe files File system error (-1073741674) help please!?

                        Ошибка или неточность, вызванная ошибкой, совершая просчеты о том, что вы делаете. Это состояние неправильного суждения или концепции в вашем поведении, которое позволяет совершать катастрофические события. В машинах ошибка — это способ измерения разницы между наблюдаемым значением или вычисленным значением события против его реального значения.

                        Это отклонение от правильности и точности. Когда возникают ошибки, машины терпят крах, компьютеры замораживаются и программное обеспечение перестает работать. Ошибки — это в основном непреднамеренные события. В большинстве случаев ошибки являются результатом плохого управления и подготовки.

                        Ошибки EXE происходят по ряду причин, но в основном из-за проблем с исполняемыми файлами или EXE-файлами. EXE — это расширение приложения в Windows. Подобно другим типам файлов, встроенных в вашу компьютерную систему, EXE-файлы могут время от времени входить в ошибки. Некоторые ошибки являются общими, но некоторые из них трудно устранить и устранить.

                        Программное обеспечение, которое вы используете, и приложения, необходимые для работы операционной системой, используют EXE-файлы для выполнения своих задач. В этой записке ПК содержит много EXE-файлов, возможно, тысячи, что позволяет с большой вероятностью иметь место ошибка. Иногда ошибки EXE могут повлиять на вашу компьютерную систему. Программы могут перестать работать, или ваш компьютер может замедлить работу. Хуже того, EXE-ошибка может помешать вам получить доступ к вашему компьютеру и войти в него.

                        Некоторые проблемы, которые могут вызвать ошибки EXE:

                        • Вирусы, вредоносные программы и программы-шпионы
                        • Неверные, поврежденные, поврежденные или устаревшие файлы или драйверы
                        • Конфликт записей в системном реестре Windows
                        • Конфликты приложений

                        Большинство компьютерных ошибок идентифицируются как внутренние для сервера, а не в отношении оборудования или любого устройства, которое может быть связано с пользователем. Одним из примеров является системная ошибка, в которой проблема нарушает процедурные правила. Системные ошибки не распознаются операционной системой и уведомляют пользователя с сообщением, “A system error has been encountered. Please try again.”

                        Системная ошибка может быть фатальной, и это происходит, когда операционная система останавливается на мгновение, потому что она находится в состоянии, когда она больше не работает безопасно. Некоторые из этих ошибок — ошибка остановки, проверка ошибок, сбой системы и ошибка ядра.

                        Ошибки, связанные с диском, часто являются основной причиной ошибок файловой системы в операционной системе Windows. Это в основном можно объяснить такими проблемами, как плохие сектора, коррупция в целостности диска или другие связанные с этим проблемы. С огромной программной системой, такой как Microsoft Windows, которая предназначена для выполнения чрезвычайно большого числа задач, в какой-то момент следует ожидать ошибок, связанных с файловой системой.

                        Некоторые из этих ошибок также могут быть вызваны сторонними программами, особенно теми, которые зависят от ядра Windows для запуска. Обычные пользователи могут также запускать такие ошибки файлов при интенсивном использовании.

                        Causes of Can’t run .exe files File system error (-1073741674) help please!?

                        Обычно, если тип Ошибка EXE происходит часто, вам нужно выполнить только одно, прежде чем делать что-либо еще — очистить системный реестр. Скорее всего, ваш реестр Windows имеет некоторые поврежденные файлы, которые требуют очистки или ремонта. Одна вещь, чтобы избежать таких типов ошибок EXE, — это использовать антивирусные или подобные инструменты. Это ваше лучшее оружие для борьбы с ошибками EXE, вызванными вредоносными заражениями.

                        Итак, как вы исправляете ошибку EXE и избегаете будущих сбоев?

                        1. Всегда защищайте свой компьютер с помощью антивирусной программы.
                        2. Регулярно запускайте средство очистки реестра, чтобы удалить и восстановить поврежденные записи реестра Windows.
                        3. Обновите драйверы вашего ПК.
                        4. Обязательно используйте хорошее интернет-соединение для загрузки программ из Интернета, чтобы убедиться, что они загружены без изменений и не повреждены.
                        5. Избегайте доступа к подозрительным веб-сайтам и открытия электронных писем из неизвестных источников.

                        Поврежденные системные файлы в системе Microsoft Windows могут произойти, и они отображаются в отчетах об ошибках системы. Хотя простым решением будет перезагрузка вашего компьютера, лучший способ — восстановить поврежденные файлы. В Microsoft Windows есть утилита проверки системных файлов, которая позволяет пользователям сканировать любой поврежденный файл. После идентификации эти системные файлы могут быть восстановлены или восстановлены.

                        Существует несколько способов устранения фатальных системных ошибок.

                        • Исполнение Подпись Отключить драйвер
                        • Использовать команду DISM
                        • Заменить поврежденные файлы
                        • Запуск сканирования SFC
                        • Восстановление реестра
                        • Удалите недавно установленные драйверы или приложение
                        • Установите последние обновления драйверов
                        • Откат драйверов

                        Большинство этих ошибок файлов можно легко устранить, применив последние обновления программного обеспечения от Microsoft. Однако иногда некоторые типы ошибок могут быть тяжелыми для ремонта.

                        Для более сложных проблем с файловой системой общие решения включают следующее:

                        • Сброс окон
                        • Выполнение ремонта системных файлов
                        • Очистка кэша хранилища Windows
                        • Ремонт компонентов
                        • Переустановка приложений Windows

                        Вы также можете использовать утилиту Средство проверки системных файлов инструмент для исправления поврежденных и отсутствующих системных файлов. В то же время, Проверить диск chkdsk также можно использовать для проверки целостности файловой системы и определения местоположения поврежденных секторов на жестком диске.

                        More info on
                        Can’t run .exe files File system error (-1073741674) help please!

                        РЕКОМЕНДУЕМЫЕ: Нажмите здесь, чтобы исправить ошибки Windows и оптимизировать производительность системы.

                        Close the program window, and delete the program from your desktop.Please note: You and we are trying our best to keep up. Tried to run command prompt got this «File system error (-1073741674)».I would run malware will review your topic and do their best to resolve your issues. No input is needed, takes just a little longer to get to every request for help. Upon completing the above steps and posting a reply, another staff member to Bleeping Computer!

                        I am HelpBot: an automated program designed to is ignored here. Any the DDS icon, allow it to run.
                        My computer has been acting up lately,I used disk cleaner/registry error/virus scan to fix it may have to disable any script protection running if the scan fails to run.

                        Please note that your up for posting the results. Notepad will open with the results. Run the scan, enable your with an explanation about the tool.

                        We apologize for the delay in the scan is running. Thanks!

                        help appreciated.. bytes etc but I can’t since it gives me same error on the everything.

                        Follow the instructions that pop up but now It can’t run any .exe files.What can I do about this ?? Hello and welcome responding to your request for help. This message contains very important information, so please Please perform the following scan again: Download DDS by sUBs from

                        Save it to your desktop.DDS.comDouble click on need to see some information about what is happening in your machine. You can skip the one of the following links if you no longer have it available. No one topic was not intentionally overlooked. Our mission is to help everyone in need, but sometimes it

                        After downloading the tool, disconnect from A/V and reconnect to the internet. help the Bleeping Computer Staff better assist you! Thank you for your patience, and again sorry for the delay.
                        ***************************************************
                        We read through all of it before doing anything. Here at Bleeping Computer we get overwhelmed at times, rest of this post.

                        the internet and disable all antivirus protection. A small box will open,
                        Не удается запустить любые файлы, получить ошибку Ошибка файловой системы (-1073741819)

                        Then go to the «Sounds» tab and make your sound scheme either «No Sounds» or «Windows Default». Enjoy You can do this by using the start menu to search for «Sound» then clicking the control panel sound option.


                        Ошибка файловой системы Windows 10 при открытии графических файлов

                        При попытке открыть графические файлы (JPG, GIF и т. Д.) Это ошибка, которая возникает в домашней системе (ASUS Sabertooth X99 с i7).

                        Это чистая установка Windows 10 Pro 64-bit install:

                        Ошибка файловой системы (-2147098360)

                        Вы пытались изменить средство просмотра по умолчанию?


                        Services.exe, -1073741674, NT Authority (HJT log)

                        Also, as the log shows, I’ve previously had SuperAntiSpyware day goes by without me being able to start my computer normally. Grateful for any help
                        // Nitt

                        EDIT:: I keep trying until it works… installed — apparently the uninstallation wasn’t very clean.

                          like a more permanent fix and above all get rid of what is causing this.

                        Removing this seemed to have -1073741674
                        Application at fault: Services.exe
                        «Authorized by» NT Authority SystemClick to expand… AVG does find a ‘hidden driver file’ in ‘SystemRootSystem32Drivers’ with a no tool I’ve tried so far has been able to remove it. If it’s needed, I’ll

                        I recently learned about the ‘shutdown -a’ command which can work around this, but I’d ran a new scan with antivirus turned off… Whenever I restart my computer to remove this file, different name each time — the last time it was called ‘a4e3nkp1.SYS’. Sometimes I can go for a week without it, sometimes a an effect earlier, but not recently.

                        Since a while back, I’m getting a I also have Eset Smart Security and AVG Anti-Rootkit Free installed.

                        From some research I’ve done, this seems like the Sasser worm, although forced restart message upon startup, seemingly at random. The message I get includes the following information;
                        Error code run a scan or when the auto-restart message comes up. Other than the tools I’ve downloaded for this singl…


                        windowsnstatus code 1073741674

                        HI
                        Was wondering if someone with the above mentioned error code. The computer will just randomly restart, could help with my problem. Hijackthis logfile
                        thanks i advance. I will post

                        Есть идеи….


                        Ошибка 1304: Ошибка записи в файл C: Program Files Common Files Lenovo Logger logman.

                        Unfortunately, after going through the long installation process I received the R&R and downloaded tvtrnr4v_117en.exe. I uninstalled the original I suspect that the solution will be not directly related to Rescue and Restore.

                        Моя проблема связана с Rescue and Restore на моем компьютере Lenovo, но вы хотите сделать резервную копию моего компьютера на DVD.

                        Когда я попытался взглянуть на каталог Logger, я обнаружил, что он, по-видимому, пуст. Затем я решил удалить сообщение Rescue and Restore следующего сообщения:

                        Ошибка 1304: Ошибка записи в файл C: Program Files Common Files Lenovo Logger logman.exe. Я купил свой Lenovo в апреле прошлого года и 4 и загрузил его с веб-сайта Lenovo. Убедитесь, что у вас есть доступ к этому каталогу

                        Когда я получил два сообщения об ошибках *.


                        Batch renaming files fails, error «the system cannot find file…»

                        Байт был для старых msdos с правами администратора без везения.

                        Всем привет,

                        I’m trying to rename files with batch file «bulkrename.bat», that there are differences see if it work then as it works with a cmd prompt. I tried to run batch file is generated by a short program made with Visual Foxpro 9.0. Welcome to the forum can you rename the file to .cmd instead of .bat are max. 200 characters.

                        Я также попытался вручную удалить символы 16 бит .cmd для windows cmd

                        В чем разница с подобным (), но это не помогло. пакетное окно и окно командной строки? Путь + имя файла


                        сообщение об ошибке при попытке резервного копирования Резервное копирование обнаружило проблему при резервном копировании файла компьютера C: Windows System32 config systemprofile SyncUP. Ошибка: (Система не может найти указанный файл. (0x80070002))

                        Ошибка: (Система не может найти резервную копию файла C: Windows System32 config systemprofile SyncUP. Резервное копирование обнаружило указанный файл проблемы (0x80070002))


                        Застрял в файловой ошибке файловой системы NTFS и петле ошибки файла FAT на s …

                        Относительно срочно.

                        Я использовал ctrl f8 f11, чтобы попасть в меню восстановления, но не может решить проблему.


                        Win32.Dluca.AX: Файл C: program files Common Files System ms1src.exe

                        Нортон антивирус определил эту O4 — Global Startup: Microsoft Office.lnk = C: Program вы меньше всего этого ожидаете, вдруг посылает тебя на порносайт. Благодарю. Кажется, это одна из троянских коней, которая, когда

                        Файлы Logitech Desktop Messenger 8876480 Program LDMConf.exe
                        O4 — глобальный запуск: Lotus Organizer EasyClip.lnk =? Файлы журнала HijackThis Microsoft Office Office OSA9.EXE
                        O4 — Global Startup: officejet 6100.lnk = ? O4 — Global Startup: Logitech Desktop Messenger.lnk = C:Program Adware but can’t delete it. Can you please tell me how to eliminate it or point me in the direction of existing instructions, if there are any?

                        (v1.99.0) выглядит следующим образом.


                        Файловая система Protector — Блокировка файлов Папки, Запрет записи доступа к файлам

                        NoVirusThanks File System Protector — это мощная утилита, которая использует драйвер режима ядра, чтобы полностью заблокировать файл или папку и запретить доступ к файлам (разрешить только чтение).


                        Есть ли способ восстановить потерянные файлы или получить доступ к реальной системной файловой системе?

                        Это не так, но я не ответил ни на один из вопросов, которые я задал. После его использования сегодня, выходить и идти немного сложно, но … Спасибо! Я использую Perfect Note от Ya ..

                        Они были вежливы и сказали, что им очень жаль, что это было. Я подключил телефон к своему компьютеру, но вы не можете вручную обновить любое приложение, которое я хочу обновить. Вы можете получить доступ к Windows App Store примерно за 8 месяцев. Это похоже на файловую систему Windows.

                        Они отметили, что на компьютере есть файлы для поиска файлов. Я надеялся использовать некоторое программное обеспечение для восстановления, чтобы читать этот «диск» … Я не уверен, что средства восстановления будут. Программное обеспечение восстановления также не сможет получить доступ к тому же дню.

                        для доступа к реальной файловой системе, только папки, разрешенные MS. Я получил файловую систему ответа, которая мне нужна. очень важная информация в приложении. Это я только что установил.

                        Любой, кто имеет опыт в этом, я обнаружил, что все исчезло. После телефона, так что идея в настоящее время не работает. Я сохранил множество опций, чтобы иметь записи, поддерживаемые OneDrive. эта область, пожалуйста, помогите?

                        Он не должен был делать никаких обновлений из магазина, так как


                        After ‘file_recovery’ virus removal, system files lost ‘system file’ attribute

                        не могли бы вы спросить мнение Гринлера здесь: http: //www.bleepingcomputer.com/forums/topic405109.htmlхорошая удача

                        running Windows Vista. Thanks! unhide.exe really saved me!

                        That’s not possible.May (system) and ‘H’ (hidden)?

                        Shouldn’t they say ‘S’ I am


                        What to do with the files recovered in C:/System Recovery file folder/C/<my files>

                        Я запускаю восстановление системы и заканчиваю тем, что с ними делать. И я не могу открыть Закончить процесс восстановления? Кроме того, я должен перезагрузить все программы, выполнив все обновления по мере необходимости.

                        Я запускаю Vista и уже восстановил файлы в папке C: / System Recovery / C / folder.

                        Вопрос в том, как сделать некоторые из этих файлов. Однако я не знаю, но эта папка содержит каталог файлов программы.


                        Восстановление системных файлов вручную с помощью System File Checker

                        Должна быть запущена утилита ремонта, но я не мог найти ничего подобного. Я вытащил свой компакт-диск Windows 8, думая, что могу просто быть в прошлом? / Cleanup-Image / RestoreHealth с подсказкой Adm Cmd.? инструменты DISM для многих систем.

                        Вы пытались запустить Dism / Online, когда обнаружены повреждения SFC / Scannow, а некоторые — лучший способ, не так ли? Установили ли вы, что нельзя восстановить, что является, как правило, следующим шагом.

                        KB3022345 вызвал повреждение файлов и в последнее время удалил все обновления Windows? Похоже, что в этот день и возраст должен быть лучший способ, чем сравнивать ваши файлы с известными рабочими версиями вручную.


                        Как восстановить системные файлы, когда System File Checker не будет работать

                        Например, убедитесь, что системный файл, который вы собираетесь скопировать, является хорошей копией. Мой ПК работает нормально — но я повреждаю файлы, чтобы sfc / scannow мог запускаться снова без заминки? Единственное предложение, которое я получил так takeown / f C: windows system32 jscript.dll.

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

                        icacls C: windows system32 jscript.dll / grant администраторы: F. Это известная хорошая копия файла.

                        Я запустил System File Checker (sfc), и он обнаружил, что вы можете выполнить процесс проверки системных файлов на этом компьютере, чтобы сделать поврежденный системный файл.

                        Предоставить администраторам полный доступ очень рискованно. далеко должен был выполнить Repair Install. Замените поврежденный системный файл копией E: temp jscript.dll C: windows system32 jscript.dll.

                        вы ……………… Кто-нибудь знает о верном огневом способе ремонта моего аналога о ремонте чего-либо, что не так на моем ПК.


                        Мы заметили, что, когда мы используем большие файлы из удаленной файловой системы, она не кэшируется функцией кэширования файлов Windows

                        Мы заметили, что, когда мы используем большие файлы из удаленной файловой системы, она не кэшируется функцией кэширования файлов Windows.


                        Ошибка обновления Windows. Ошибка целостности системного файла. Ошибка установки.

                        Все это только для исправления iTunes, и я даже не знаю никакой помощи, которую вы можете предложить. Вот:

                         SFCFix версия 2.4.3.0 от niemiro. как попробовать. Я пытаюсь исправить этот ноутбук для родственника

                        не удалось установить автоматически. Но я бы все же начал время: 2015-05-10 00: 46: 57.020
                        Служба Microsoft Windows 7 Первоначально, все, что я хотел

                        Также было рекомендовано запустить SFCfix здесь: http: //www.sysnative.com/niemiro/apps/SFCFix.exe
                        В какой-то момент он блокирует 0. Я подключил SFClog Pro на своем ноутбуке Dell. В настоящее время для хранения нужно использовать iTunes. Успешно обработан niemiro завершен.

                        Этот ноутбук находится в хранилище и SFCFix версии 2.4.3.0 всех директив.
                        Я запускаю Windows 7 не включается через год. AutoAnalysis ::
                        CORRUPT: C:Windowswinsxsamd64_microsoft-windows-servicingstack_31bf3856ad364e35_6.1.7601.17592_none_672ce6c3de2cb17fsmipi.dll
                        РЕЗЮМЕ: некоторые изъяны, если любой из них даже исправит проблему iTunes для начала!

                        и я не думаю, что у них есть оригинальные компакт-диски. Пакет 1 — amd64
                        Не использовать файл сценария. Время окончания: 2015-05-10 00: 51: 14.249
                        ———————- ———————- EOF
                        Я благодарен, что попросил меня вставить Windows DVD, если бы у меня было это, чего я не делал.


                        Ошибка файловой системы NTFS или ошибка файловой системы Fat

                        Я купил его в 2013 с Windows 8. Единственные ключи, на которые он отвечает, — ESC, f2 и f12, но даже там. Сейчас, начиная с нескольких месяцев, у него есть Windows 10

                        много заранее. с моей HP завидовать dv6 7220us. И когда он запустил синий экран (не уверен, что это бит 32 или бит 64).

                        Я попробовал несколько вещей с форума здесь, как кто-то предлагающий нажать CNTRL снова, сказав NTFS_FILE_SYSTEM_ERROR, или он скажет FAT_FILE_SYSTEM_ERROR. Мне отчаянно нужна помощь + F8 + F11, чтобы выйти из порочного цикла, но ничего не сделал. Это режим паники, и он продолжает возвращаться к перезагрузке в этот синий экран ошибок. Может ли кто-нибудь помочь? Спасибо, теперь для меня.


                        Проблема. Ошибка регистратора. У вас нет необходимых разрешений файловой системы для создания указанного выходного файла.

                        Проблема. Ошибка регистратора. У вас нет необходимых разрешений файловой системы для создания указанного выходного файла.


                        file-recovery-system.com, критические системные предупреждения об ошибках

                        Я попытался установить после перезагрузки в безопасном режиме, но это вирус / захват.
                        Я получил еще один вызов Windows 7. поверь в это. Он пытается дважды сбить вас с ошибкой, я получил предупреждение об отказе в доступе.

                        Я попытался установить MBAM, но для установки компьютера используется RKill.exe, чтобы как минимум остановить процесс и предупреждения. Я отправляю с моего чистого компьютера с тех пор, как много предупреждений об ошибках ввода-вывода и проблемах с жестким диском. Очевидно, что к файлу -recovery-system.com нужно что-то купить.

                        Now on startup a fake system scan runs with there is another problem so I went to check it out. After cleaning his computer completely last month with help from BleepingComputer.com had the same access denied at the end of the install. I can’t browser redirects on his computer make it almost impossible. I searched on the web for fixes and was able to from my Dad today.


                        Загрузка новой версии исправила мою проблему, спасибо за помощь.

                        Я не могу скомпилировать свою программу и понятия не имею почему? Я искал довольно трудно найти причину, почему это происходит безрезультатно. Я просто пытаюсь запустить пример по умолчанию, который дает вам dev-c ++ это то, что он выплевывает
                        Это журнал компиляции

                        Compiler: Default compiler
                        Building Makefile: "C:UsersalexDesktopC++test2Makefile.win"Executing  make...
                        make.exe -f "C:UsersalexDesktopC++test2Makefile.win" all
                        g++.exe -c main.cpp -o main.o -I"C:/Dev-Cpp/lib/gcc/mingw32/3.4.2/include"  -I"C:/Dev-Cpp/include/c++/3.4.2/backward"  -I"C:/Dev-Cpp/include/c++/3.4.2/mingw32"  -I"C:/Dev-Cpp/include/c++/3.4.2"  -I"C:/Dev-Cpp/include"
                        make.exe: *** [main.o] Error -1073741819
                        
                        Execution terminated
                        

                        -3

                        Решение

                        я перевел -1073741819 в шестнадцатеричное число (с помощью калькулятора Windows):

                        -1073741819 знак равно 0xC0000005

                        Есть таблица всех NTSTATUS ценности на MSDN. Соответствующая строка:

                        0xC0000005 STATUS_ACCESS_VIOLATION

                        Инструкция в 0x% 08lx ссылается на память в 0x% 08lx. Память не может быть% s.

                        Это звучит как ОП g++ как-то сломан, так как для меня это выглядит make.exe сообщает код выхода -1073741819 из g++,

                        За 20 лет профессионального опыта у меня были редкие случаи, когда определенный неправильный код C ++ приводил к сбою моего компилятора (вместо того, чтобы просто сообщать об ошибке). Это не происходило в течение многих лет.

                        Пример кода ОП

                        #include <cstdlib>
                        #include <iostream>
                        
                        using namespace std;
                        
                        int name(int argc, char *argv[])
                        {
                        system("PAUSE");
                        return EXIT_SUCCESS;
                        }
                        

                        выглядит ИМХО слишком невинно, чтобы вызвать такую ​​ошибку компилятора, как упомянуто выше.

                        Итак, я согласен с советом Юнноша:

                        Пытаться g++ --version на консоли (например, cmd.exe). а) проверка g++ работает на всех. б) Посмотрите, не слишком ли устарела версия.

                        Вы также можете проверить, не смешаны ли случайно параллельные установки инструментов с одинаковыми именами. Это может случиться, например, имея конфликтующие места в PATH переменная окружения.

                        1

                        Другие решения

                        Других решений пока нет …

                        0 0 голоса
                        Рейтинг статьи
                        Подписаться
                        Уведомить о
                        guest

                        0 комментариев
                        Старые
                        Новые Популярные
                        Межтекстовые Отзывы
                        Посмотреть все комментарии

                        А вот еще интересные материалы:

                      • Яшка сломя голову остановился исправьте ошибки
                      • Ясность цели позволяет целеустремленно добиваться намеченного исправьте ошибки
                      • Ясность цели позволяет целеустремленно добиваться намеченного где ошибка
                      • Deus ex mankind divided произошла ошибка при распаковке
                      • Deus ex mankind divided ошибка при запуске приложения 0xc0000142 как исправить