I'm trying to build a simple C++ project in KDevelop for the first time and have run into a problem. Here is the collection of errors that the linker is spitting out.
No executable is produced. Can anyone give me a clue of what I need to do to get this beast working?
Thanks.
Bill Lugg
Code:
cd '/home/luggw1/Joel/Code/hello_world/debug' && WANT_AUTOCONF_2_5="1" WANT_AUTOMAKE_1_6="1" LC_MESSAGES="C" LC_CTYPE="C" make -k make all-recursive Making all in src /bin/bash ../libtool --tag=CXX --mode=link g++ -O0 -g3 -o hello_world hello_world.o ../libtool: line 832: X--tag=CXX: command not found ../libtool: line 865: libtool: ignoring unknown tag : command not found ../libtool: line 832: X--mode=link: command not found ../libtool: line 999: *** Warning: inferring the mode of operation is deprecated.: command not found ../libtool: line 1000: *** Future versions of Libtool will require --mode=MODE be specified.: command not found gcc: no input files gcc: no input files gcc: no input files gcc: no input files ../libtool: line 2237: X-O0: command not found ../libtool: line 2237: X-g3: command not found ../libtool: line 2406: Xhello_world: command not found X: user not authorized to run the X server, aborting. ../libtool: line 2418: Xhello_world: command not found ../libtool: line 2426: mkdir /.libs: No such file or directory mkdir: cannot create directory `/.libs': Permission denied make[2]: *** [hello_world] Error 1 make[2]: Target `all' not remade because of errors. make[2]: Nothing to be done for `all-am'. make[1]: *** [all-recursive] Error 1 make: *** [all] Error 2 *** Exited with status: 2 ***
Thanks.
Bill Lugg
Comment