Ok some I'm working on a project for school
Everything compiles fine no warnings, when code::blocks calls either gnome-terminal or xterm the compiled code executes perfectly.
Does the following when I try to run from terminal

This is the build code from codeblocks
even if I copy its syntax I still can't get my compiled code to execute on the terminal.
-------------- Build: Release in Lab10 (compiler: GNU GCC Compiler)---------------
gcc -Wall -O2 -c /home/spode/Downloads/git/abajor/Lab10/Game.c -o obj/Release/Game.o
gcc -Wall -O2 -c /home/spode/Downloads/git/abajor/Lab10/Player.c -o obj/Release/Player.o
gcc -Wall -O2 -c /home/spode/Downloads/git/abajor/Lab10/rpg.c -o obj/Release/rpg.o
gcc -o bin/Release/Lab10 obj/Release/Game.o obj/Release/Player.o obj/Release/rpg.o -s
Output file is bin/Release/Lab10 with size 9.98 KB
Process terminated with status 0 (0 minute(s), 0 second(s))
0 error(s), 0 warning(s) (0 minute(s), 0 second(s))
-------------- Run: Release in Lab10 (compiler: GNU GCC Compiler)---------------
Checking for existence: /home/spode/Downloads/git/abajor/Lab10/Lab10/bin/Release/Lab10
Executing: gnome-terminal -t Lab10 -x /usr/bin/cb_console_runner LD_LIBRARY_PATH=$LD_LIBRARY_PATH:. /home/spode/Downloads/git/abajor/Lab10/Lab10/bin/Release/Lab10 (in /home/spode/Downloads/git/abajor/Lab10/Lab10/.)
Process terminated with status 0 (0 minute(s), 0 second(s))
Anyone have any idea what's going on?