Results 1 to 5 of 5

Thread: Qt program "exited with code 1994410319" error?

  1. #1
    Join Date
    Jan 2014
    Posts
    5
    Qt products
    Qt5
    Platforms
    Windows

    Exclamation Qt program "exited with code 1994410319" error?

    Hey! I recently created a new project in QtCreator, and started work on it, at one point I tried to test it but it wouldn't run, I was getting no errors, but right after just it started running (in the application output) it says it exited with code 1994410319. I have no idea what this means, but I am getting a warning saying:

    ":-1: warning: cannot find entry symbol nable-stdcall-fixup; defaulting to 00401000"

    and now it is doing this on all of my projects, can someone please help?

  2. #2
    Join Date
    Mar 2009
    Location
    Brisbane, Australia
    Posts
    7,729
    Thanks
    13
    Thanked 1,610 Times in 1,537 Posts
    Qt products
    Qt4 Qt5
    Platforms
    Unix/X11 Windows
    Wiki edits
    17

    Default Re: Qt program "exited with code 1994410319" error?

    We can guess Windows. We can guess MingW, but not which version. We cannot guess what version of Qt.

    This is what is happening:
    http://stackoverflow.com/questions/1...xup-defaulting

    That feature of MingW Makefiles from Qt 4 qmake was fixed years ago (in Qt 4.7 I think)

  3. #3
    Join Date
    Jan 2014
    Posts
    5
    Qt products
    Qt5
    Platforms
    Windows

    Default Re: Qt program "exited with code 1994410319" error?

    I am currently in version 5.2.0, and I did look at that earlier, and I did what the comment said. The only thing is nothing seemed to happen!


    Added after 8 minutes:


    Also, something I forgot, but atm my qmake.conf looks like this:

    #
    # qmake configuration for win32-g++
    #
    # Written for MinGW / gcc 4.6 or higher
    #
    # Cross compile example for i686-w64-mingw32-g++:
    # configure -xplatform win32-g++ -device-option CROSS_COMPILE=i686-w64-mingw32-
    #

    load(device_config)

    MAKEFILE_GENERATOR = MINGW
    QMAKE_PLATFORM = win32 mingw
    CONFIG += debug_and_release debug_and_release_target precompile_header
    DEFINES += UNICODE
    QMAKE_COMPILER_DEFINES += __GNUC__ WIN32

    QMAKE_EXT_OBJ = .o
    QMAKE_EXT_RES = _res.o

    QMAKE_COMPILER = gcc

    QMAKE_CC = $${CROSS_COMPILE}gcc
    QMAKE_LEX = flex
    QMAKE_LEXFLAGS =
    QMAKE_YACC = byacc
    QMAKE_YACCFLAGS = -d
    QMAKE_CFLAGS = -pipe -fno-keep-inline-dllexport
    QMAKE_CFLAGS_DEPS = -M
    QMAKE_CFLAGS_WARN_ON = -Wall -Wextra
    QMAKE_CFLAGS_WARN_OFF = -w
    QMAKE_CFLAGS_RELEASE = -O2
    QMAKE_CFLAGS_DEBUG = -g
    QMAKE_CFLAGS_YACC = -Wno-unused -Wno-parentheses
    QMAKE_CFLAGS_SSE2 = -msse2
    QMAKE_CFLAGS_SSE3 = -msse3
    QMAKE_CFLAGS_SSSE3 = -mssse3
    QMAKE_CFLAGS_SSE4_1 = -msse4.1
    QMAKE_CFLAGS_SSE4_2 = -msse4.2
    QMAKE_CFLAGS_AVX = -mavx
    QMAKE_CFLAGS_AVX2 = -mavx2
    QMAKE_CFLAGS_IWMMXT = -mcpu=iwmmxt
    QMAKE_CFLAGS_NEON = -mfpu=neon

    QMAKE_CXX = $${CROSS_COMPILE}g++
    QMAKE_CXXFLAGS = $$QMAKE_CFLAGS
    QMAKE_CXXFLAGS_DEPS = $$QMAKE_CFLAGS_DEPS
    QMAKE_CXXFLAGS_WARN_ON = $$QMAKE_CFLAGS_WARN_ON
    QMAKE_CXXFLAGS_WARN_OFF = $$QMAKE_CFLAGS_WARN_OFF
    QMAKE_CXXFLAGS_RELEASE = $$QMAKE_CFLAGS_RELEASE
    QMAKE_CXXFLAGS_DEBUG = $$QMAKE_CFLAGS_DEBUG
    QMAKE_CXXFLAGS_YACC = $$QMAKE_CFLAGS_YACC
    QMAKE_CXXFLAGS_THREAD = $$QMAKE_CFLAGS_THREAD
    QMAKE_CXXFLAGS_RTTI_ON = -frtti
    QMAKE_CXXFLAGS_RTTI_OFF = -fno-rtti
    QMAKE_CXXFLAGS_EXCEPTIONS_ON = -fexceptions -mthreads
    QMAKE_CXXFLAGS_EXCEPTIONS_OFF = -fno-exceptions
    QMAKE_CXXFLAGS_CXX11 = -std=c++0x

    QMAKE_INCDIR =

    QMAKE_RUN_CC = $(CC) -c $(CFLAGS) $(INCPATH) -o $obj $src
    QMAKE_RUN_CC_IMP = $(CC) -c $(CFLAGS) $(INCPATH) -o $@ $<
    QMAKE_RUN_CXX = $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $obj $src
    QMAKE_RUN_CXX_IMP = $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<

    QMAKE_LINK = $${CROSS_COMPILE}g++
    QMAKE_LINK_C = $${CROSS_COMPILE}gcc
    QMAKE_LFLAGS = -static -static-libgcc -enable-stdcall-fixup -Wl,-enable-auto-import -Wl,-enable-runtime-pseudo-reloc
    QMAKE_LFLAGS_EXCEPTIONS_ON = -mthreads
    QMAKE_LFLAGS_EXCEPTIONS_OFF =
    QMAKE_LFLAGS_RELEASE = -Wl,-s
    QMAKE_LFLAGS_DEBUG =
    QMAKE_LFLAGS_CONSOLE = -Wl,-subsystem,console
    QMAKE_LFLAGS_WINDOWS = -Wl,-subsystem,windows
    QMAKE_LFLAGS_DLL = -shared
    QMAKE_LFLAGS_CXX11 =
    QMAKE_LINK_OBJECT_MAX = 10
    QMAKE_LINK_OBJECT_SCRIPT = object_script
    QMAKE_PREFIX_STATICLIB = lib
    QMAKE_EXTENSION_STATICLIB = a

    QMAKE_LIBS =
    QMAKE_LIBS_CORE = -lole32 -luuid -lws2_32 -ladvapi32 -lshell32 -luser32 -lkernel32
    QMAKE_LIBS_GUI = -lgdi32 -lcomdlg32 -loleaut32 -limm32 -lwinmm -lws2_32 -lole32 -luuid -luser32 -ladvapi32
    QMAKE_LIBS_NETWORK = -lws2_32
    QMAKE_LIBS_OPENGL = -lglu32 -lopengl32 -lgdi32 -luser32
    QMAKE_LIBS_OPENGL_ES2 = -llibEGL -llibGLESv2 -lgdi32 -luser32
    QMAKE_LIBS_OPENGL_ES2_DEBUG = -llibEGLd -llibGLESv2d -lgdi32 -luser32
    QMAKE_LIBS_COMPAT = -ladvapi32 -lshell32 -lcomdlg32 -luser32 -lgdi32 -lws2_32
    QMAKE_LIBS_QT_ENTRY = -lmingw32 -lqtmain

    !isEmpty(QMAKE_SH) {
    MINGW_IN_SHELL = 1
    QMAKE_DIR_SEP = /
    include(../common/shell-unix.conf)
    # Because install's ability to set permissions is not relevant on Windows,
    # and git's msys does not provide it to start with.
    QMAKE_INSTALL_FILE = cp -f
    QMAKE_INSTALL_PROGRAM = cp -f
    } else {
    include(../common/shell-win32.conf)
    }

    QMAKE_IDL = midl
    QMAKE_LIB = $${CROSS_COMPILE}ar -ru
    QMAKE_RC = $${CROSS_COMPILE}windres

    QMAKE_STRIP = $${CROSS_COMPILE}strip
    QMAKE_STRIPFLAGS_LIB += --strip-unneeded
    QMAKE_OBJCOPY = $${CROSS_COMPILE}objcopy
    QMAKE_NM = $${CROSS_COMPILE}nm -P
    load(qt_config)
    Last edited by evanw1256; 20th February 2014 at 04:42.

  4. #4
    Join Date
    Mar 2009
    Location
    Brisbane, Australia
    Posts
    7,729
    Thanks
    13
    Thanked 1,610 Times in 1,537 Posts
    Qt products
    Qt4 Qt5
    Platforms
    Unix/X11 Windows
    Wiki edits
    17

    Default Re: Qt program "exited with code 1994410319" error?

    I am currently in version 5.2.0, and I did look at that earlier, and I did what the comment said. The only thing is nothing seemed to happen!
    If only you could have mentioned that earlier... would have saved time for both of us.

    It seems you have changed:
    Qt Code:
    1. QMAKE_LFLAGS =
    2. // (See https://qt.gitorious.org/qt/qtbase/source/121e71293500e08148d3c2ce31a8e9b618943cba:mkspecs/win32-g++/qmake.conf#L70 )
    3. // to this
    4. QMAKE_LFLAGS = -static -static-libgcc -enable-stdcall-fixup -Wl,-enable-auto-import -Wl,-enable-runtime-pseudo-reloc
    To copy to clipboard, switch view to plain text mode 
    Are you perhaps not telling us that this is a custom, static build?

    In any case your QMAKE_LINK variable contains exactly the construct causing the failure, and not the fixed version the other post highlights. Assuming that line is generally correct your file should read:
    Qt Code:
    1. QMAKE_LFLAGS = -static -static-libgcc -Wl,-enable-stdcall-fixup -Wl,-enable-auto-import -Wl,-enable-runtime-pseudo-reloc
    To copy to clipboard, switch view to plain text mode 
    You then need to rerun qmake before rebuilding the entire project.
    Last edited by ChrisW67; 20th February 2014 at 05:08.

  5. #5
    Join Date
    Jan 2014
    Posts
    5
    Qt products
    Qt5
    Platforms
    Windows

    Default Re: Qt program "exited with code 1994410319" error?

    This is not a custom or static build, I have just been using the ordinary builds. Anyways I reokaced the QMAKE_LFLAGS with what you put it should be, then I ran QMake, rebuilt the project, and ran it, but again nothing happened. It just exited with the code 1994410319 which is the exact same code as before...

Similar Threads

  1. error "cmd.exe" exited with code 1 in visual studio 2010
    By cactus0830 in forum Installation and Deployment
    Replies: 1
    Last Post: 22nd June 2013, 05:25
  2. getting error "exited with code -1073741515"
    By surendra1234sharma in forum Qt Programming
    Replies: 2
    Last Post: 13th February 2013, 16:02
  3. Replies: 4
    Last Post: 11th August 2011, 09:02
  4. Running example project with mingw gives "... exited with code -1073741792" error
    By sibercekirge in forum Installation and Deployment
    Replies: 8
    Last Post: 31st May 2011, 18:33
  5. Replies: 3
    Last Post: 2nd November 2010, 23:36

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Digia, Qt and their respective logos are trademarks of Digia Plc in Finland and/or other countries worldwide.