Application crashes after links compilations on the command line and running on Simulator

Hi all

I have a project where I need to link my static libraries built separately (but using the toolchain/compiler inside the BBNDK) for a sample application QML BB10.  I am relatively new to BB10 and its environment.

Although the application compiles and links successfully, the performance of the application is segmenting online

AbstractPane *root = qml->createRootObject();

My other static libraries have many references to the C++ Standard Library, such as strings, streams etc. and these are inside libstdc++.a/.so. Also some references to struggling and Expat. And so I assured these library on my road to compile as follows

qcc -Vgcc_ntox86 -lang-c++ -Wl,-rpath-link,/opt/bbndk/target_10_0_9_386/qnx6/x86/lib -Wl,-rpath-link,/opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib -o o-g/MyApp o-g/.obj/main.o o-g/.obj/MyApp.o o-g/.obj/moc_MyApp.o    -L/opt/bbndk/target_10_0_9_386/qnx6/x86/lib -L/opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib -L/opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/qt4/lib -L/opt/bbndk/lib ./myStaticLib.a /opt/bbndk/target_10_0_9_386/qnx6/x86/lib/gcc/4.6.3/libstdc++.a /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libexpat.so.2 /opt/bbndk/target_10_0_9_386/qnx6/x86/lib/libsocket.so -lm -lbps -lbb -lbbcascades -lQtDeclarative -lQtScript -lQtSvg -lQtSql -lQtXmlPatterns -lQtXml -lQtGui -lQtNetwork -lQtCore

With this application compiles / links with success but as said previously, it crashes inside createRootObject.

If I don't specify my static library (myStaticLib.a), out of all references to myStaticLib.a in the code and remove the stdc library ++ application goes ahead and the screen correctly.

NOTE: myStaticLib.a is not related to the QT code in any way. I call the method inside myStaticLib after that I booted properly QT and after showing the first screen in the code.

I was able get out the base of the Simulator file and also use it with this gdb on my build machine. Here is the result of the BDG.

root@server:/opt/bbndk#host_10_0_9_52/linux/x86/usr/bin/ntox86-gdb /home/puneet_narsapur/webrtc/ip/psl_p2pwebrtc_r2835_x86_bb10/trunk/third_party/libjingle/source/talk/examples/BBTalk/x86/o-g/PeerConnection /home/puneet_narsapur/webrtc/ip/psl_p2pwebrtc_r2835_x86_bb10/trunk/PeerConnection.core
GNU gdb (GDB) 7.4 qnx (rev. 691)
Copyright (C) 2012 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "--host=i686-pc-linux-gnu --target=i486-pc-nto-qnx6.5.0".
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>...
Reading symbols from /home/puneet_narsapur/webrtc/ip/psl_p2pwebrtc_r2835_x86_bb10/trunk/third_party/libjingle/source/talk/examples/BBTalk/x86/o-g/PeerConnection...done.
[New pid 8880242 tid 1]
[New pid 8880242 tid 2]
[New pid 8880242 tid 3]
[New pid 8880242 tid 4]
[New pid 8880242 tid 5]
[New pid 8880242 tid 6]
[New pid 8880242 tid 7]
[New pid 8880242 tid 8]
[New pid 8880242 tid 9]
[New pid 8880242 tid 10]
[New pid 8880242 tid 11]
[New pid 8880242 tid 12]
[New pid 8880242 tid 13]

warning: Corrupted shared library list: 0x0 != 0x86f8000

warning: Could not load shared library symbols for 15 libraries, e.g. libQtDeclarative.so.4.
Use the "info sharedlibrary" command to see the complete listing.
Do you need "set solib-search-path" or "set sysroot"?
Program terminated with signal 11, Segmentation fault.
#0  0xb086709e in __free () from /opt/bbndk/target_10_0_9_386/qnx6/x86/lib/libc.so.3
Traceback (most recent call last):
  File "/opt/bbndk/target_10_0_9_386/qnx6/x86/lib/libstdc++.so.6.0.16-gdb.py", line 59, in 
    from libstdcxx.v6.printers import register_libstdcxx_printers
ImportError: No module named libstdcxx.v6.printers
(gdb) bt
#0  0xb086709e in __free () from /opt/bbndk/target_10_0_9_386/qnx6/x86/lib/libc.so.3
#1  0xb0866c6b in free () from /opt/bbndk/target_10_0_9_386/qnx6/x86/lib/libc.so.3
#2  0x08325e80 in operator delete(void*) ()
#3  0x08325ecc in operator delete[](void*) ()
#4  0x0832a69e in std::ios_base::~ios_base() ()
#5  0xb962fa8f in ?? () from /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libbbcascades.so.1
#6  0xb963074c in ?? () from /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libbbcascades.so.1
#7  0xb952d3c8 in bb::cascades::AbstractTextControl::setText(QString const&) () from /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libbbcascades.so.1
#8  0xb94df30c in bb::cascades::AbstractTextControl::qt_metacall(QMetaObject::Call, int, void**) () from /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libbbcascades.so.1
#9  0xb94e7762 in bb::cascades::Label::qt_metacall(QMetaObject::Call, int, void**) () from /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libbbcascades.so.1
#10 0xb9e9686d in ?? ()
#11 0x089b6598 in ?? ()
#12 0x00000002 in ?? ()
#13 0x0000002f in ?? ()
#14 0x07b9a14c in ?? ()
Cannot access memory at address 0x89e24cc
(gdb) info sharedlibrary
warning: Corrupted shared library list: 0x0 != 0x86f8000
From        To          Syms Read   Shared Object Library
0xb8638000  0xb86500ac  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libexpat.so.2
0xb82dd000  0xb8314824  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/lib/libsocket.so.3
0xb8203000  0xb823b8d4  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/lib/libm.so.2
0xb825f000  0xb82bf56c  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libbps.so.3
0xb8450000  0xb848c780  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libbb.so.1
0xb9400000  0xb9c5a200  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libbbcascades.so.1
                        No          libQtDeclarative.so.4
                        No          libQtScript.so.4
                        No          libQtSvg.so.4
                        No          libQtSql.so.4
                        No          libQtXmlPatterns.so.4
                        No          libQtXml.so.4
                        No          libQtGui.so.4
                        No          libQtNetwork.so.4
                        No          libQtCore.so.4
0xb8665000  0xb86d7a88  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/lib/libcpp.so.4
0xb0837000  0xb08d7cc0  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/lib/libc.so.3
0xb8247000  0xb825c118  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libscreen.so.1
0xb823c000  0xb824210c  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/lib/libpps.so.1
0xb82c9000  0xb82cd0c4  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/lib/libslog2.so.1
0xb8b44000  0xb8be11e4  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libbbsystem.so.1
0xb82c2000  0xb82c7160  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libbbsystemlocale.so.1
0xb82cf000  0xb82dabac  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libEGL.so.1
0xb831d000  0xb832707c  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libGLESv2.so.1
0xb8419000  0xb8425248  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/lib/libgestures.so.1
0xb8436000  0xb844a1a0  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/lib/libimg.so.1
0xb8aef000  0xb8b2447c  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libstrpattern.so.1
0xbacf9000  0xbae94cd0  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libwebview.so.2
0xb8427000  0xb842f48c  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/lib/liblgmon.so.1
0xb8493000  0xb84aa124  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libz.so.2
0xb8ab4000  0xb8adf400  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libpng14.so.0
0xb904c000  0xb912a0c0  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libiconv.so.1
0xb8316000  0xb831b504  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/lib/libclipboard.so.1
0xb84ab000  0xb84b2190  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libcontext.so.1
0xb93a9000  0xb93d9774  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libnfc.so.1
0xb8243000  0xb82460d0  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libnfc_bps.so.1
0xbab17000  0xbacdcb74  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libicui18n.so.49
0xbb800000  0xbd5c1258  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libwebkit.so.0
0xbb01f000  0xbb498150  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libwebkitplatform.so.0
0xbaeb5000  0xbb015644  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libicuuc.so.49
0xbb56f000  0xbb6e57c0  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libgrskia.so.1
0xb8629000  0xb8634280  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/lib/libimfclient.so.1
0xb935c000  0xb939c26c  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libgoogleurl.so.0
0xb8657000  0xb8663254  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libintl.so.1
0xb9c6a000  0xb9cd99c8  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/lib/libcpp-ne.so.4
0xb8430000  0xb8435128  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/lib/libcounters.so.1
0xbe800000  0xbf952988  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libicudata.so.49
0xbaa99000  0xbaaf5bec  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libcurl.so.2
0xbb526000  0xbb557960  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libfontconfig.so.1
0xbb4e6000  0xbb51c2b4  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/lib/libjpeg.so.4
0xbb6fc000  0xbb78e4fc  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libsqlite3.so.1
0xbda11000  0xbdb342dc  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libxml2.so.1
0xbb4a1000  0xbb4db768  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libxslt.so.2
0xbd6ae000  0xbd7273c8  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libfreetype.so.1
0xbb79b000  0xbb7d14f8  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libharfbuzz.so.0
0xb8a99000  0xb8aa8168  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libskia-qnx.so.0
0xb8aab000  0xb8ab1120  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libppscache.so.1
0xb8ae7000  0xb8aed150  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/lib/libmmrndclient.so.1
0xb8ae0000  0xb8ae61bc  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libmd.so.1
0xb848d000  0xb8492120  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libaoi.so.1
0xbb7d5000  0xbb7fb7f4  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/lib/libinput_client.so.1
0xbd628000  0xbd668138  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/lib/libhuapi.so.5
0xb8b25000  0xb8b43838  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libcamapi.so.1
0xbd5cf000  0xbd617450  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libiType.so.1
0xbd8b1000  0xbd9179dc  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libWTLE.so.1
0xbd81e000  0xbd883b50  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/lib/libinput_utilities.so.1
0xb8be8000  0xb8bfa260  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libcares.so.1
0xbd783000  0xbd7df6f8  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libssl.so.2
0xbd670000  0xbd6aa5d8  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libgssapi.so.1
0xb8328000  0xb832c084  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libstrm.so.1
0xbd954000  0xbda060a4  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/lib/libsbgse56.so.0
0xb93de000  0xb93eb1f4  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libmmedia.so.1
0xb93ec000  0xb93fcaec  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libmmfilter.so.1
0xb9c5b000  0xb9c68d00  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libbz2.so.1
0xb939e000  0xb93a626c  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/lib/libhiddi.so.1
0xbdd07000  0xbdeb7764  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libcrypto.so.2
0xb9ce8000  0xb9cf13ec  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libnbutil.so.1
0xbdc23000  0xbdc98498  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libkrb5.so.1
0xb9cde000  0xb9ce6310  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libheimntlm.so.1
0xbdb37000  0xbdbca0e8  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libasn1.so.1
0xb8200000  0xb8202110  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libcom_err.so.1
0xbd736000  0xbd77c91c  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libhx509.so.1
0xbaa7f000  0xbaa8f5f0  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libroken.so.1
0xbd7ec000  0xbd8140fc  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libwind.so.1
0xb8414000  0xb84185c0  Yes (*)     /opt/bbndk/target_10_0_9_386/qnx6/x86/usr/lib/libheimbase.so.1
                        No          libHwEGL.so
                        No          libegl_gallium.so
                        No          libHwglapi.so
                        No          libpipe_vmwgfx_drv.so
0xbdf18000  0xbe00a9b8  Yes         /opt/bbndk/target_10_0_9_386/qnx6/x86/lib/libstdc++.so.6
                        No          libllvmpipe_drv.so
                        No          libHwGLESv2.so
(*): Shared library is missing debugging information.
(gdb) q
root@server:/opt/bbndk#

It seems to be crashing within libc.so while trying to release something. There is not any change in the QML code at all.

Even if everything seems to be compilations and links correctly, I'm not able to find the reason for this accident.

I don't change all code QML, but if I include my library and stdc ++ it crashes. If I don't get my library and stdc ++ he does not crash and all is well.

Can someone help me please how to debug this problem? Stuck in this during more than two days

Found the problem. For the other library that I was building with the BB10 NDK build tools, I was not using "qcc-Vgcc_ntox86-lang-c ++. I used instead of the ntox86-g ++ under the host directory. And it lacked the required compiler flags that were used internally by qcc.

After changing the compiler, application has compiled, I did not provide libstdc ++ .a for him also, as well as the application has been properly executed well.

Tags: BlackBerry Developers

Similar Questions

  • CAP of the command line and the 8800

    I have a terrible time this morning trying to release some software for the Blackberry 8800. In our generation, we have been calling the compiler of Cap 4.3.0 of the command line (which I always have loads of doubts) generating a cod file and unzip for OTA deployment. It worked ok for 8830 phones so far. Once we started to try to do the same thing for 8800 phones we hit a major roadblock. We started to experience random errors when loading our application on the device. (The problem is also reproduced in the AT & T 4.2.1 emulator.) Sometimes the application will work but only on a particular plu model Cingular blackberry where as our QA guy has a bit newer model phone. The application will also work if it is compiled using slightly different source code. The source code that causes a failure will run when compiled and loaded on the same device a build running with the other working source code. After attending the recent virtual conference, I learned that the compiler is not backward compatible. In other words, the CAP generated 4.3.0 cod files will not work on devices with an OS older than 4.3.0. My immediate reaction was to return to the version of the CAP to 4.2.0 and try again. I hit another block when I started having:

    WARNING! : no entry point found
    com.mypkg.MyMidlet: WARNING! : no definition not found [INFO] com.rim.resources.MyProjectRIMResources: error! : class: com.mypkg.MyMidlet has no members:

    So, I upped the version 4.2.1 retries and still got the error. Compiler error goes away with the 4.3.0 CAP but I'm not confident to go into production by using this compiler and targeting the older operating system. I use the same exact command line parameters in both cases. (I pass the flag - midelt and MyMidlet has a public ctor). Can someone tell me what has changed between 4.2.0 and 4.3.0. Y at - it another option or another flag that I have to give. Research on the error, suggests that the old compiler assumes a CLDC application instead of a Midlet. Could someone also explain if there is a problem to start the 4.3.0 SignatureTool.jar against the binaries generated by older Cap (if ever make us it work), targeting older OS 4.2.1? I am desperately looking for answers... Thanks in advance!

    This highlights a problem with Java environment.  Please see the link below for more information.

    Support - i/o Error: CreateProcess
    Article number: DB-00081

    http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800738/800901/support...

  • Uninstall creative cloud from the command line

    We have a license for Adobe Creative Cloud 2015.

    I packed Adobe Creative Cloud 2015 Muse for Windows.

    We use Microsoft SCCM to deploy applications packaged in our 8000 machines to Windows 7.

    Using SCCM MS I can install the Muse of 2015 CC packaged from the command line.

    However, how to uninstall an application Adobe Creative Cloud 2015 from the command line?

    Move the discussion to the deployment to the Cloud, business, & CS creative team

  • Is there a problem with Adobe Reader DC using the command line to open a file?

    Hello

    I am a developer and we use Adobe Reader to view our PDF help files in our application.  For years, we used WinExec() to open Adobe Reader, by specifying the file to open on the command line and it has been working perfectly.  In other words, upward until our users began to load Adobe Acrobat Reader DC.  Despite this work very well when you type a command using CMD.exe, it simply does not help WinExec() from another application programmatically.  Also, I modified the code to try using CreateProcess() or ShellExecute() and these functions do not work either.

    It may have to do with the fact that there is a switch or a parameter now within the DC, but I don't know what it is, or why it happens.  If anyone can shed some light on this it would be much appreciated because it severely hampers our latest version of the software.

    Kind regards

    Leigh.

    A common cause is not to put quotes on the command line, so instead of

    "c:\program files...\acrord32.exe" "c:\documents and settings\...my file.pdf.

    You write

    "c:\program files...\acrord32.exe" c:\documents and settings\...my file.PDF

    This has always been bad, but older versions it would accept anyway. (It was a recent change but not in DC).

    I would recommend using ShellExecute instead of the command line, however. That simulates a double-click and executes everything the user has created for PDFs (perhaps Reader, Acrobat maybe, maybe something else).

  • Access iCloud drive via the command line

    I wanted to write a small script to access iCloud by car via the command line, and to my surprise, this seems to be a very special place that is not displayed in /Volumes or even in my home directory is Dropbox.

    Veterinarians here know the way, if not to enlightenment, then to iCloud drive?

    Thanks in advance.

    It is actually a rather interesting problem. I did research I should have done before I came here and found that iCloud Drive is accessible here:

    ~/Library/Mobile\ Documents

    What is interesting is that the many, many interesting things found in this directory when you reveal all the files through ls - al, is that custom directories seem to appear. Even more interesting, in the Finder, select go > go to folder... and that type path and it does not recognize the path. Type ~/Library/, and then of course that's fine and see you the directory of Documents Mobile...

  • The application has failed to start because its side-by-side configuration is incorrect. See the application event log or use the command-line sxstrace.exe for more details

    Hello

    I can t open Google Earth or Microsoft Office programs because I get this message - the application could not start because its side-by-side configuration is incorrect. Please see the application event log or use the command-line sxstrace.exe for more details.

    A few days ago I could open all what programs. I put t know what is the problem.

    I did sxstrace and that's what I have-

    =================
    Launch the activation context generation.
    Input parameter:
    Flags = 0
    ProcessorArchitecture = Wow32
    CultureFallBacks = en-US; en
    ManifestPath = C:\Program Files (x 86) \Google\Google Earth\client\googleearth.exe
    AssemblyDirectory = C:\Program Files (x 86) \Google\Google Earth\client\
    Application configuration file =
    -----------------
    INFO: File analysis shows C:\Program Files (x 86) \Google\Google Earth\client\googleearth.exe.
    INFO: Manifest definition identity is (null).
    INFO: Reference: Microsoft.VC80.CRT, processorArchitecture = "x 86" publicKeyToken = "1fc8b3b9a1e18e3b", type = "win32", version = "8.0.50727.4053"
    INFO: Resolving reference Microsoft.VC80.CRT, processorArchitecture = "x 86" publicKeyToken = "1fc8b3b9a1e18e3b", type = "win32", version = "8.0.50727.4053".
    INFO: Resolving reference for ProcessorArchitecture WOW64.
    INFO: Resolving reference for the neutral culture.
    INFO: Application binding policy.
    INFO: No found publisher policy.
    INFO: No redirect political connection is found.
    INFO: Start the detection of assembly.
    INFO: Can't find the assembly in WinSxS.
    NEWS: Try to detect manifest to C:\Windows\assembly\GAC_32\Microsoft.VC80.CRT\8.0.50727.4053__1fc8b3b9a1e18e3b\Microsoft.VC80.CRT.DLL.
    INFO: Found no manifesto for the neutral culture.
    INFO: End detection of assembly.
    INFO: Resolving reference for ProcessorArchitecture x 86.
    INFO: Resolving reference for the neutral culture.
    INFO: Application binding policy.
    NEWS: Control strategy of the Publisher C:\Windows\WinSxS\manifests\x86_policy.8.0.microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.5592_none_517247830f45081d.manifest
    INFO: Start the detection of assembly.
    INFO: End detection of assembly.
    ERROR: Activation context generation failed.
    End activation context generation.

    Help, please!

    This type of error can be caused if the Visual C++ library runtime components are missing or because of a third-party software.

    Follow the steps below:
     
    Method 1:
    If the problem is caused by the lack of Visual C++ libraries, you can download and install the Runtime components of Visual C++ libraries from the link below:
     
    This error can occur when the Microsoft .NET Framework installation on the computer is damaged or is missing.

    Try it out below step to reinstall and repair installation of Microsoft .NET Framework on the computer, then check if you can install the software.

    (a) click the Start button, select Control Panel, click programs and then click on 'Turn Windows has or not.' If you are prompted for an administrator password or a confirmation, type the password or provide confirmation.

    (b) search for Microsoft .NET framework 3.5.1 uncheck, click OK and restart the computer.

    (c) after the reboot, open again "Turn Windows features on or off" and place a check next to Microsoft .NET framework 3.5.1 and restart the computer.

    Step 2

    If the previous step fails, then I suggest that you manually download and install Microsoft Visual C++ 2005 and 2008 Redistributable Package and check to see if you can install the software.

    In programs and features, you do not show that you have installed Microsoft Visual C++ 2005 Redistributable and Microsoft Visual C++ 2008 Redistributable? If this is not the case, download the links here.
     
    Package redistributable Visual C++ 2005 (X 86)
     http://www.Microsoft.com/downloads/en/details.aspx?FamilyId=32BC1BEE-A3F9-4C13-9C99-220B62A191EE&displaylang=en
     
    Visual C++ 2005 (x 64) redistributable package manager
     http://www.Microsoft.com/downloads/en/details.aspx?FamilyId=eb4ebe2d-33c0-4A47-9dd4-b9a6d7bd44da&displaylang=en

    Package redistributable Microsoft Visual C++ 2008 (x 86)

    http://www.Microsoft.com/downloads/en/details.aspx?FamilyId=9B2DA534-3E03-4391-8A4D-074B9F2BC1BF&displaylang=en

    Package redistributable Visual C++ 2008 SP1 (x 64)
     http://www.Microsoft.com/downloads/en/details.aspx?FamilyId=BA9257CA-337F-4B40-8C14-157CFDFFEE4E&displaylang=en

    I hope this helps.

  • "Error: the application failed to start because the side by side configuration is incorrect, please see the application event log or use the command-line sxstrace.exe for more details.

    I have QQ (an international chat program) installed on the laptop. Then my hard drive crashed. Now when I try to reinstall it on my new hard drive I get the following message:

    "Error: the application failed to start because the side by side configuration is incorrect, please see the application event log or use the command-line sxstrace.exe for details" -how can I solve this problem? I have Windows 7.

    Hello

    Thanks for choosing Microsoft Community to post your question.

    It seems that you can not install application QQ, you get an error: "the application could not start because the side by side configuration is incorrect, please see the application event log or use the command-line sxstrace.exe for more details.

    We're here to help and guide you in the right direction. This problem could be caused when the computer is missing the correct C++ run time for your type of system components. (x 86 or x 64).

    Here are a few troubleshooting steps that you can try to solve this problem.

    Method 1: we will install Microsoft Visual C++ for your computer package.

    Note: If you use the 32-bit operating system, download and install 32-bit edition(X86).

    If you use the 64-bit operating system, download and install edition(X64) 64-bit.

    Microsoft Visual C++ 2008 SP1 Redistributable Package (x 86)
    http://www.Microsoft.com/downloads/en/details.aspx?FamilyId=A5C84275-3B97-4AB7-A40D-3802B2AF5FC2&displaylang=en

    Microsoft Visual C++ 2008 SP1 Redistributable Package (x 64)
     http://www.Microsoft.com/downloads/en/details.aspx?FamilyId=BA9257CA-337F-4B40-8C14-157CFDFFEE4E&displaylang=en

    Package redistributable Microsoft Visual C++ 2010 (x 86)

    http://www.Microsoft.com/downloads/en/details.aspx?FamilyId=a7b7a05e-6de6-4D3A-A423-37bf0912db84

    Package redistributable Microsoft Visual C++ 2010 (x 64)

    http://www.Microsoft.com/downloads/en/details.aspx?FamilyId=bd512d9e-43c8-4655-81bf-9350143d5867

    Method 2: Run the fixit available at the following link.

    Solve problems with programs that cannot be installed or uninstalled

    http://support.Microsoft.com/mats/Program_Install_and_Uninstall

    Also, check the event log using Event Viewer.

    Please see the link below for more information on how to use Event Viewer to check the error message or information,

    http://Windows.Microsoft.com/en-us/Windows7/what-information-appears-in-event-logs-Event-Viewer

    If you have additional problems, please reply to this post and we will be happy to help you further.

  • 15 Firefox crashing at the start of the command line in Windows 15

    I was loading my workspace through a batch file every day for 4 years.

    This is one of the apps that I start Firefox using the following command:

    @start /D "C:\Program Files\Mozilla Firefox\" firefox.exe

    My batch file run and close without problem.

    Update Firefox 15, using the same order now links Firefox to the console.
    When I close the console, the closing of Firefox, when I open again since the standard shortcut, I have the "Firefox crashed.

    I also noticed that since the upgrade to Firefox 15, some calls to console.log go in the Console Windows while firefox is loading. In particular, is HTTPSEverywhere.

    When I drove back to 14 of Firefox, the problem disappeared

    As a temporary workaround, you can change the startup command to create a new command shell and run Firefox from this command interface. The following command will do what you need:

    Start "TempShell" / d "C:\Program Files\Mozilla Firefox" /B "CMD /C start""Firefox" "firefox.exe".


    NOTE: Thunderbird 15 also has the same problem... and the same workaround.

  • WINDOWS 7 error the application failed to start because the side by side configuration is incorrect, please see the application event log or use the command-line sxstrace.exe for more details.

    «WINDOWS 7 error the application failed to start because the side by side configuration is incorrect, please see the application event log or use the command-line sxstrace.exe for more details.»

    This cams almost for all the applications that I try to open. I read all kinds of things to solve problems, but I can't install anything because it is constantly on the screen.

    I think it's like that because my computer shuts off when I was doing the system restore, because he has not started.

    I don't know what to do.

    Hello

     
    You can view the event log by using Event Viewer. See the link below for more information about how to use Event Viewer to check the error message or information,
     
    Please check the information in Event Viewer and let us know the problem more briefly for a better solution.
     

    Method 1:
    However, try the SFC (System File Checker) scan on the computer. Check out the following link to do the same thing:
    How to use the System File Checker tool to fix the system files missing or corrupted on Windows Vista or Windows 7
    http://support.Microsoft.com/kb/929833
     
    Method 2:
    You try to run the fixit given in the following link and check if it works:
  • How to pass variables by using the command line when starting from a native application ActionScript

    How to pass in variables or arguments to start using the command line when starting a native ActionScript application? For example, I have my app MySweetWidget call and it was compiled with Adobe AIR runtime in captivity so now I have MySweetWidget.exe.

    In the command line, I call MySweetWidget.exe and would like to pass in variables or properties of the application. I guess that these variables are read from the loaderInfo.parameters object.

    Please let me know if the Adobe AIR runtime supports passing the parameters to native execution. If so, I would like to help determine the correct format of how pass variables. So would you want to read those loaderinfo.parameters object?

    Thank you

    Jeff

    I found the answer to my own question:

    Yes, it's a feature supported. It is documented on the following page:

    http://help.Adobe.com/en_US/FlashPlatform/reference/ActionScript/3/Flash/desktop/NativeApp lication.html #event:invoke

    When you subscribe to the event from the NativeApplication invoke it will subsequently send the event and you read the table of e.arguments object to get the start in the native application arguments.

  • Start an application saved on the command line

    Hello

    first of all that I do not know how I can start my data .exe on the command line, I know that. I need a few more tips.

    My problem is that I start my program and set values in my interface and then I save my interface. You can say that I am creating some options with different parameters (option 1, option 2, option3). Now, I would like to open this option on the command line. So first of all the program begins with option1 when this option is over that option 2 should start (I will also create a handler of signals which gives me a feedback if the option before closing).

    It should be like this:
    Path\Application.exe option1 option2 option3

    But know that I have a problem. When I save my slab (SavePanelState) I can not open such a Panel is saved with the command "LoadPanel". In help, there is also information that you can load only such a panel with the RecallPanelState command, but with this command you only update the interface. Now my question is, how can I savel a panel with its States and call it with the command LoadPanel? Or is the only way to load a group of experts and to recall the values the command of RecallPanelState?

    Best regards

    Unortunately there is no way to directly open a control panel preconfigured with controls other than in their default state. You have already discovered it and I can confirm that this can not be changed. However, if you call LoadPanel and RecallPanelState front showing the Panel, that the user will directly see the Panel custom, which is more or less what you are looking for.

  • Deployment of final application with the command line Question

    OK so I have my finished application.

    on a folder in my office called "CODBOUG".

    So I tried different methods to run the application and complete the test on the Simulator with the command line. But it's just too much. So I need your help community!

    I tried:

    BlackBerry-deploy-installApp-package CallofDutyBlackOpsUltimateG

    uide.bar - device 192.168.18.128

    I'm a little lost with the help of the command line, if someone could guide me on the right lane.

    I'm on windows, btw.

    Thank you.

    When you run a command, Windows will search in a series of directories for this program to run. The list of directories is stored in what is called an environment variable. You must add the path to the bin of the sdk at this variable directory (e.g. C:\Program Files (x 86) \Adobe\Adobe Flash Builder Burrito\sdks\blackberry-tablet-sdk-0.9.3\bin).

    You can access the path variable by right-clicking on my computer > properties. Select the Advanced tab and click on approx. Variables.

    Under System Variables, search PATH and edit it. Add the path to the sdk bin directory (make sure that there is a semicolon, that separates the directories).

    Open a command line window in the directory where your .bar file. When you run the command, Windows will look for blackberry - deploy and can be found in the directory that you have added to your PATH variable so to run it.

  • PLSQL compiling from the command prompt (not within sqlplus)

    Hi all

    is there a way compilation plsql from prompt not open sqlplus and writing the @filename command?

    We want to import the output to a file and analyzed for a code review tool that we're working on

    Thank you...

    user9371286 wrote:
    Thanks for the answer, I do not want to run the script, I want just to compile?
    Your very helpful answer I'm looking for the other parameters for the fair compilation

    But the execution of a script, it's how do you things from the command line.

    If you want to compile a package or procedure etc you can use for example:

    alter procedure  compile;
    

    in your script

    In addition, if you include the 'exit' at the end of your script, it will return SQL * for the command-line command again.

  • Unicode character on the command line

    I have a folder that contains a non-ASCII character, "registered sign" (®), which can be typed in a Terminal by using the-r option.

    It is U + 00AE, and as an 8-bit character, it is 174 decimal. I want to be able to enter this character on the command line without

    typing Option, because I have to build a Terminal command using an application that

    is not respectful of Unicode. So option-r helps me create a string that contains this character.

    For example, in the Terminal, I made a folder in ~ with as its name in full (I typed a r while pressing the option key):

    > mkdir ~ /.

    I can list help

    > ls ~ /.

    but I have to be able to do so * without using any modifier key * (as option).

    I thought I could use something like (after cd ~)

    > ls \302\256

    or

    > ls \u00AE

    or

    > ls \xc2\xae

    but I could not do the shell to interpret what I type as registered r symbol. Everything what I enter is interpreted

    literally as individual characters rather that, for example, the \xC2 is considered a single character. I also tried different combinations

    quotes as double the backslash, but I continue get "No such file or directory".

    How can I represent this character on the command line without modifier keys? I'm on El Capitan, OS X 10.11.2, running bash 3.2.

    Have you tried zsh instead of bash?

    I think bash supports \u starting only 4.2

  • Error running webworks create from the command line in Beta 2 of Webworks

    Hello

    I am creating a project of cordova webworks from the command line. I run the following command:

    WebWorks create f:\devroot\NEXT_GEN\MobileApp\WebWorks2\MyApp com.joe.myApp MyApp

    However, it fails with the following error message:

    {[Error: check incorrect header] errno:-3, code: "Z_DATA_ERROR"}

    It seems to me that its attempts to download a tar.gzip drop of github (url below), but this file does not exist:

    URL: https://git-wip-us.apache.org/repos/asf?p=cordova-app-hello-world.git;a=snapshot;h=v2.0.0.54;sf=tgz

    So I'm not sure that my project directory is set up correctly. What is contained in this folder which its trying to find in the remote repository and is it relevant to my application?

    I can see my project directory in the space provided. It contains the following folders:

    ".cordova', 'merge', 'platforms', 'plugins' and 'www '.

    ".cordova" contains a subfolder 'hooks' which, in turn, contains about 24 cases being with 'after' or 'before' (e.g.after_build, before_build), it seems to be empty. It also contains a config.json that contains the attributes id and name of the project. Do any other necessary information in config.json?

    All other folders are empty.

    Is any other thing missing? should there be a config.xml file created for me in the directory "www" for example?

    Just add a config.xml file myself? Y at - it information about the correct structure for the config.xml file in webworks 2.0?

    Thank you

    Joe

    Hey Joe,

    So, just to confirm, HOST = "C:\". "and USERPROFILE ="C:\Users\?

    This is useful. Normally Windows machines do not have a HOME environment variable.

    We must ensure that these files copied to %USERPROFILE%\.cordova\lib\www\cordova\v2.0.0.54

    Please try this patch to webworks-cli/lib/utils/utils.js:

        findHomePath : function () {
            return process.env[(process.platform === 'win32') ? 'USERPROFILE' : 'HOME'];
        },
    

Maybe you are looking for

  • Satellite A200 does not support 4 GB SD card

    Hello... I have SD card problem. My computer read the 1 GB SD card but not read 4 GB SD cards. My operating system is vista Home premium. I test my SD card with the other laptop and it works. Thank you...

  • Equium M50 - 164 acute fan noise

    Everytime I open Windows Media Player or watch a website with macromedia/flash points the fan on my laptop makes a constant high pitched noise. Performance is not affected. After the closure of media player or Web site open the noise stops. I ran dir

  • IX2-disk to read directly from Windows10

    Hello Is someone can you please tell me how I can read a disc of my IX2 Windows10 form? I connected the drive without going through my IX2 while I can't reach him more and the first disc is damaged. So I want to connect the second drive directly to m

  • A new album, I played twice and now is out of Apple's music.  Why would that happen?

    A new album, I played twice and it's now out Apple music after only a week.  Why?

  • Missing HP Solution Center

    Solution Center has disappeared from the computer for HP Photosmart 7510 e-all-in-one printer - C311a How can I re - acquire?