Author Topic: No such file or directory "error not input file" Build filed 2 errors  (Read 56145 times)

Offline ERBULUT

  • Single posting newcomer
  • *
  • Posts: 4
Can you help me ? I can not fix the error.




Offline Miguel Gimenez

  • Developer
  • Lives here!
  • *****
  • Posts: 1553
Re: No such file or directory "error not input file" Build filed 2 errors
« Reply #1 on: September 06, 2020, 12:28:45 pm »
Remove the trailing /bin in the "Compiler's installation directory" edit box

If you have more compilation problems see http://wiki.codeblocks.org/index.php/FAQ-Compiling_(errors)#Q:_How_do_I_troubleshoot_a_compiler_problem.3F

Offline ERBULUT

  • Single posting newcomer
  • *
  • Posts: 4
Re: No such file or directory "error not input file" Build filed 2 errors
« Reply #2 on: September 06, 2020, 01:30:33 pm »
I tried it but it is not fix.


Offline BlueHazzard

  • Developer
  • Lives here!
  • *****
  • Posts: 3353
Re: No such file or directory "error not input file" Build filed 2 errors
« Reply #3 on: September 06, 2020, 01:56:48 pm »
Please copy and paste (no image) the content of the build log tab, at the bottom near the build messages, as described here: http://wiki.codeblocks.org/index.php?title=FAQ-Compiling_(general)#Q:_How_do_I_report_a_compilation_problem_on_the_forums.3F

Offline ERBULUT

  • Single posting newcomer
  • *
  • Posts: 4
Re: No such file or directory "error not input file" Build filed 2 errors
« Reply #4 on: September 06, 2020, 03:03:32 pm »
I am so sorry.

Code
-------------- Build: Debug in deneme3 (compiler: GNU GCC Compiler)---------------

gcc.exe  -o bin\Debug\deneme3.exe obj\Debug\main.o   
gcc.exe: error: obj\Debug\main.o: No such file or directory
gcc.exe: fatal error: no input files
compilation terminated.
Process terminated with status 1 (0 minute(s), 0 second(s))
2 error(s), 0 warning(s) (0 minute(s), 0 second(s))
 

Offline BlueHazzard

  • Developer
  • Lives here!
  • *****
  • Posts: 3353
Re: No such file or directory "error not input file" Build filed 2 errors
« Reply #5 on: September 06, 2020, 03:40:28 pm »
Have you modified the project?

Lets try to fix it:
Project->Properties->Build targets->Build target files -> Is main.cpp checked?

Have you tried a new project? Without modification?
Does the path to your project has special characters, like non english or spaces?

Edit:
Have you tried a rebuild: Build->Rebuild?

Please post always a build log if you can

greetings

Offline ERBULUT

  • Single posting newcomer
  • *
  • Posts: 4
Re: No such file or directory "error not input file" Build filed 2 errors
« Reply #6 on: September 06, 2020, 08:02:51 pm »
Thank you for your help , ı gat it. I fixed the error,
i changed the filename and the problem was solved.
« Last Edit: September 06, 2020, 08:54:56 pm by ERBULUT »

Santi

  • Guest
Re: No such file or directory "error not input file" Build filed 2 errors
« Reply #7 on: September 02, 2021, 07:46:47 pm »
I have the same problem, how did you fix it? Please help me :'(

Offline Poruks

  • Single posting newcomer
  • *
  • Posts: 6
Re: No such file or directory "error not input file" Build filed 2 errors
« Reply #8 on: September 16, 2021, 11:52:53 pm »
Exact same thing happening to me. Tried with a fresh windows install, downloaded codeblocks-20.03mingw-setup.exe and can't even run the "Hello world" program. No weird file names, compiler directory is correct, everything that should be checked is checked

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7582
    • My Best Post
Re: No such file or directory "error not input file" Build filed 2 errors
« Reply #9 on: September 17, 2021, 07:56:13 am »
If you want help post a build log!

Tim S.
C Programmer working to learn more about C++ and Git.
On Windows 7 64 bit and Windows 10 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org

Offline Poruks

  • Single posting newcomer
  • *
  • Posts: 6
Re: No such file or directory "error not input file" Build filed 2 errors
« Reply #10 on: September 17, 2021, 09:05:12 am »
Code
-------------- Build: Debug in tyew (compiler: GNU GCC Compiler)---------------

g++.exe  -o bin\Debug\tyew.exe obj\Debug\main.o   
g++.exe: error: obj\Debug\main.o: No such file or directory
g++.exe: fatal error: no input files
compilation terminated.
Process terminated with status 1 (0 minute(s), 0 second(s))
2 error(s), 0 warning(s) (0 minute(s), 0 second(s))
 

There have been a few times after restarting my computer when i was able to run a program. Once the time comes when i can't run a program it stays like that forever until i restart my computer. Around 20% of my restarts result in me being able to run a program 1-3 times before everything goes to shit and i have to restart
« Last Edit: September 17, 2021, 09:16:32 am by Poruks »

Online Commaster

  • Almost regular
  • **
  • Posts: 171
Re: No such file or directory "error not input file" Build filed 2 errors
« Reply #11 on: September 17, 2021, 09:24:48 am »
Do you have any antivirus or temporary-files-cleaning software installed and possibly running/checking regularly?

Please press the Rebuild button (2 circling arrows) and post the full build log for that.

Offline Poruks

  • Single posting newcomer
  • *
  • Posts: 6
Re: No such file or directory "error not input file" Build filed 2 errors
« Reply #12 on: September 17, 2021, 09:53:41 am »
Code
-------------- Clean: Debug in fhghgh (compiler: GNU GCC Compiler)---------------

Cleaned "fhghgh - Debug"

-------------- Build: Debug in fhghgh (compiler: GNU GCC Compiler)---------------

g++.exe  -o bin\Debug\fhghgh.exe obj\Debug\main.o   
g++.exe: error: obj\Debug\main.o: No such file or directory
g++.exe: fatal error: no input files
compilation terminated.
Process terminated with status 1 (0 minute(s), 0 second(s))
2 error(s), 0 warning(s) (0 minute(s), 0 second(s))
 

I have no anti-virus installed. Tried turning off everything in Windows Security Centre and it didn't do anything
« Last Edit: September 17, 2021, 09:59:03 am by Poruks »

Online Commaster

  • Almost regular
  • **
  • Posts: 171
Re: No such file or directory "error not input file" Build filed 2 errors
« Reply #13 on: September 17, 2021, 10:17:30 am »
Looks like https://forums.codeblocks.org/index.php/topic,24123.msg164559.html#msg164559 since I can't see your source file getting used at all.

Offline Poruks

  • Single posting newcomer
  • *
  • Posts: 6
Re: No such file or directory "error not input file" Build filed 2 errors
« Reply #14 on: September 17, 2021, 10:26:04 am »
main.cpp is checked

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7582
    • My Best Post
Re: No such file or directory "error not input file" Build filed 2 errors
« Reply #15 on: September 17, 2021, 03:24:52 pm »
main.cpp is checked

Verify both compile and link of main.cpp is enabled.

Right click on main.cpp
options -> enable both

Tim S.
C Programmer working to learn more about C++ and Git.
On Windows 7 64 bit and Windows 10 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org

Offline Poruks

  • Single posting newcomer
  • *
  • Posts: 6
Re: No such file or directory "error not input file" Build filed 2 errors
« Reply #16 on: September 21, 2021, 06:27:10 pm »
They are both enabled :/

I tried out some new things in this time. Tried installing codeblocks 17.12 because i saw my university computers were running that version. When i tried compiling a program there codeblocks just crashed to desktop without any error message. When uninstalling 17.12 everything was deleted but the MinGW folder and it's contents couldnt be deleted without a restart.(might not be meaningful to my issue but worth mentioning.)

I also tried installing the Codeblocks version that doesnt come with MinGW and installed MinGW from another source. Both installations were successful and Code blocks autodetected the MinGW directory. I got the same error message as i do with the pre-packaged compiler.

Could it just be that my computer isn't compatible with something? I am using a Lenovo Legion 5 with Ryzen 5 4600H and GTX 1650 TI. Also using the newest 64bit version of Windows 10 pro

Offline Miguel Gimenez

  • Developer
  • Lives here!
  • *****
  • Posts: 1553
Re: No such file or directory "error not input file" Build filed 2 errors
« Reply #17 on: September 21, 2021, 07:03:08 pm »
Can you attach the .CBP file?

Offline Poruks

  • Single posting newcomer
  • *
  • Posts: 6
Re: No such file or directory "error not input file" Build filed 2 errors
« Reply #18 on: September 21, 2021, 08:16:34 pm »
I did another fresh Windows reinstall and Code Blocks is working for now. Thanks for the people who tried to help, i'll try to not disturb the balance and hope it continues to work. Trying to get this to work was way to stressful and time consuming lmao

2DEndGame

  • Guest
Re: No such file or directory "error not input file" Build filed 2 errors
« Reply #19 on: November 24, 2021, 11:52:56 pm »
hi, i'm a bigginer at coding in general and wanted to learn c++ and i can't even run the initial program of "hello world"given with the code::blocks compiler

build log:

-------------- Build: Debug in myfirstprogram (compiler: GNU GCC Compiler)---------------

g++.exe  -o bin\Debug\myfirstprogram.exe obj\Debug\main.o   
g++.exe: error: obj\Debug\main.o: No such file or directory
g++.exe: fatal error: no input files
compilation terminated.
Process terminated with status 1 (0 minute(s), 0 second(s))
2 error(s), 0 warning(s) (0 minute(s), 0 second(s))
 
please can anyone help me?? i'm losing my mind i haven't even started coding....

Offline AndrewCot

  • Plugin developer
  • Lives here!
  • ****
  • Posts: 678
Re: No such file or directory "error not input file" Build filed 2 errors
« Reply #20 on: November 25, 2021, 12:41:46 am »
I suggest you start by looking in the C::B manual:
    https://www.codeblocks.org/user-manual/


Offline Miguel Gimenez

  • Developer
  • Lives here!
  • *****
  • Posts: 1553
Re: No such file or directory "error not input file" Build filed 2 errors
« Reply #21 on: November 25, 2021, 09:01:08 am »
Post a full rebuild log in code tags, see this for help

Offline Todesorc

  • Single posting newcomer
  • *
  • Posts: 2
Re: No such file or directory "error not input file" Build filed 2 errors
« Reply #22 on: December 30, 2021, 08:26:38 am »
Dear All,

By standard i use Visual Code for porgramming on Linux Machines, but want to try out Code::Blocks.
Well i have the same issue with the build in example under Debian 11.

I checked the log message and did the same compiling steps by hand via xterm... and it works like it should.  :D
So it seems that the origin of this issue depends on Code::Blocks.
When i checked the directorys of the project, i recognized that there is no main.o file generated in the <obj\Debug> directory.
Maybe the settings in the compiler options could be the reason ?!

Regards

Offline BlueHazzard

  • Developer
  • Lives here!
  • *****
  • Posts: 3353
Re: No such file or directory "error not input file" Build filed 2 errors
« Reply #23 on: December 30, 2021, 08:58:30 am »
Have you checked the access rights in the project folder?
Can you share your project?
can you reproduce it with a minimal hello world project?

Offline Todesorc

  • Single posting newcomer
  • *
  • Posts: 2
Re: No such file or directory "error not input file" Build filed 2 errors
« Reply #24 on: December 31, 2021, 10:04:41 am »
Hi All,

I think i have found a solution for me regarding this issue.
Situation is/was that i normally use an account with root-rights on my development machine (to make some things easier).
I reminded that i had a similar issue with root-rights with another software some time ago.
So i have setup a new user with 'non-root-rights' and well, .... now it works...  ;)

Regards

Carnel X

  • Guest
Check that the name of the folder that content your program is correct (whithout special character)

hs

  • Guest
Re: No such file or directory "error not input file" Build filed 2 errors
« Reply #26 on: June 09, 2023, 08:36:22 pm »
please help for this error in code blocks

-------------- Build: Debug in 1 (compiler: GNU GCC Compiler for AVR)---------------

avr-gcc.exe -Wall -mmcu=atmega8 -DF_CPU=16000000UL -g -IC:\WinAVR\avr\include -c fuse.c -o obj\Debug\fuse.o
avr-gcc.exe -Wall -mmcu=atmega8 -DF_CPU=16000000UL -g -IC:\WinAVR\avr\include -c main.c -o obj\Debug\main.o
avr-gcc.exe -LC:\WinAVR\avr\lib -o bin\Debug\1.elf obj\Debug\fuse.o obj\Debug\main.o  -mmcu=atmega8 -Wl,-Map=bin\Debug\1.map,--cref 
avr-gcc.exe: fatal error: cannot read spec file 'device-specs/specs-atmega8': No such file or directory
compilation terminated.
Process terminated with status 1 (0 minute(s), 0 second(s))
 
avr-gcc.exe: fatal error: cannot read spec file 'device-specs/specs-atmega8': No such file or directory
compilation terminated.
Process terminated with status 1 (0 minute(s), 0 second(s))
2 error(s), 0 warning(s) (0 minute(s), 0 second(s))
 

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7582
    • My Best Post
Re: No such file or directory "error not input file" Build filed 2 errors
« Reply #27 on: June 10, 2023, 01:23:36 am »
To hs:

Code
-mmcu=atmega8

The above is likely wrong.

You likely want
Code
-mmcu=avr4
along with
Code
-D__AVR_ATmega8__

This info found on https://gcc.gnu.org/wiki/avr-gcc

Note: Please tell us whether a CB Wizard or you the user set these values.

Edit: Looks like the CB Wizard and Compiler settings; I am guessing both being wrong is not likely; maybe the just the linker using
Code
-mmcu=atmega8
is wrong, instead.

Tim S.
« Last Edit: June 10, 2023, 02:06:03 am by stahta01 »
C Programmer working to learn more about C++ and Git.
On Windows 7 64 bit and Windows 10 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org