Note that there are some explanatory texts on larger screens.

plurals
  1. POmake:*** [Lab1] Error 1
    primarykey
    data
    text
    <p>I already read everything <a href="https://stackoverflow.com/questions/15894675/make-error-1">Make: *** [] Error 1</a> and I am returning a 0 in my main method.</p> <p>I've tried switching up parsers, but that doesn't work either. I've tried the internal build, that doesn't work (and even if it did I want to work with makefile's).</p> <p>Here's an example of the error being given. I believe this is what's preventing me from creating the binary files which is a must have in order to run my app.</p> <p>Error image link -> <a href="http://upit.cc/i/c6b2db81.png" rel="nofollow noreferrer">http://upit.cc/i/c6b2db81.png</a></p> <p>Here's the console bit. I did a refresh and then build.</p> <pre><code>23:52:19 **** Build of configuration Debug for project Lab1 **** make all Building file: ../src/Run.cpp Invoking: GCC C++ Compiler g++ -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"src/Run.d" -MT"src/Run.d" -o "src/Run.o" "../src/Run.cpp" Finished building: ../src/Run.cpp Building file: ../shared-src/EndToken.cpp Invoking: GCC C++ Compiler g++ -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"shared-src/EndToken.d" -MT"shared-src/EndToken.d" -o "shared-src/EndToken.o" "../shared-src/EndToken.cpp" Finished building: ../shared-src/EndToken.cpp Building file: ../shared-src/ErrorToken.cpp Invoking: GCC C++ Compiler g++ -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"shared-src/ErrorToken.d" -MT"shared-src/ErrorToken.d" -o "shared-src/ErrorToken.o" "../shared-src/ErrorToken.cpp" Finished building: ../shared-src/ErrorToken.cpp Building file: ../shared-src/Token.cpp Invoking: GCC C++ Compiler g++ -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"shared-src/Token.d" -MT"shared-src/Token.d" -o "shared-src/Token.o" "../shared-src/Token.cpp" Finished building: ../shared-src/Token.cpp Building file: ../server-src/server-token/SToken.cpp Invoking: GCC C++ Compiler g++ -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"server-src/server-token/SToken.d" -MT"server-src/server-token/SToken.d" -o "server-src/server-token/SToken.o" "../server-src/server-token/SToken.cpp" Finished building: ../server-src/server-token/SToken.cpp Building file: ../server-src/server-token/StartSToken.cpp Invoking: GCC C++ Compiler g++ -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"server-src/server-token/StartSToken.d" -MT"server-src/server-token/StartSToken.d" -o "server-src/server-token/StartSToken.o" "../server-src/server-token/StartSToken.cpp" Finished building: ../server-src/server-token/StartSToken.cpp Building file: ../server-src/Message.cpp Invoking: GCC C++ Compiler g++ -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"server-src/Message.d" -MT"server-src/Message.d" -o "server-src/Message.o" "../server-src/Message.cpp" Finished building: ../server-src/Message.cpp Building file: ../server-src/Server.cpp Invoking: GCC C++ Compiler g++ -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"server-src/Server.d" -MT"server-src/Server.d" -o "server-src/Server.o" "../server-src/Server.cpp" Finished building: ../server-src/Server.cpp Building file: ../server-src/User.cpp Invoking: GCC C++ Compiler g++ -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"server-src/User.d" -MT"server-src/User.d" -o "server-src/User.o" "../server-src/User.cpp" Finished building: ../server-src/User.cpp Building target: Lab1 Invoking: GCC C++ Linker g++ -o "Lab1" ./src/Run.o ./shared-src/EndToken.o ./shared-src/ErrorToken.o ./shared-src/Token.o ./server-src/server-token/SToken.o ./server-src/server-token/StartSToken.o ./server-src/Message.o ./server-src/Server.o ./server-src/User.o ./shared-src/Token.o:(.rodata._ZTV5Token[_ZTV5Token]+0x20): undefined reference to `Token::getNextToken(char*)' ./shared-src/Token.o:(.rodata._ZTV5Token[_ZTV5Token]+0x28): undefined reference to `Token::processToken(char*)' collect2: error: ld returned 1 exit status make: *** [Lab1] Error 1 23:52:20 Build Finished (took 904ms) </code></pre> <p>As you can see from the image, Lab1 has no Binaries and it's showing the make error.</p> <p><strong>Solution found thanks to guys commenting</strong></p> <p>I'm including this code as reference to the comments to this question.</p> <pre><code>/* * Token.h * * Created on: Sep 12, 2013 * Author: cam */ #pragma once class Token { public: Token(); virtual ~Token(); enum TOKEN_TYPE {START, MIDDLE, END, ERROR}; /** * @pre processToken must be ran first! */ virtual Token getNextToken(char*); virtual bool processToken(char*); }; </code></pre> <p>/* * Token.cpp * * Created on: Sep 12, 2013 * Author: cam */</p> <pre><code>#include "Token.h" Token::Token() { } Token::~Token() { } Token Token::getNextToken(char* buff) { } bool Token::processToken(char * buff) { } </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload