Trying, failing to build qt5 with debugging symbols

As per this article, I modified my PKGBUILD like so (-developer-build):
build() {
cd ${_pkgfqn}
export QTDIR="${srcdir}"/${_pkgfqn}
export LD_LIBRARY_PATH="${QTDIR}"/qtbase/lib:"${QTDIR}"/qttools/lib:"${LD_LIBRARY_PATH}"
export QT_PLUGIN_PATH="${QTDIR}"/qtbase/plugins
export PATH="${srcdir}/python2-path:$PATH"
[[ "${CARCH}" = "i686" ]] && SSE2="-no-sse2"
PYTHON=/usr/bin/python2 ./configure -confirm-license -opensource -developer-build \
Don't know if I put the option in the wrong place, though, or if that information is outdated for qt5 - but it's not building for me. Here's where makepkg stops:
ln -s libQt5Widgets.so.5.4.0 libQt5Widgets.so
ln -s libQt5Widgets.so.5.4.0 libQt5Widgets.so.5
ln -s libQt5Widgets.so.5.4.0 libQt5Widgets.so.5.4
rm -f ../../lib/libQt5Widgets.so.5.4.0
mv -f libQt5Widgets.so.5.4.0 ../../lib/
rm -f ../../lib/libQt5Widgets.so
rm -f ../../lib/libQt5Widgets.so.5
rm -f ../../lib/libQt5Widgets.so.5.4
mv -f libQt5Widgets.so ../../lib/
mv -f libQt5Widgets.so.5 ../../lib/
mv -f libQt5Widgets.so.5.4 ../../lib/
make[3]: Leaving directory '/home/chris/Software/qt5/src/qt-everywhere-opensource-src-5.4.0/qtbase/src/widgets'
make[2]: Leaving directory '/home/chris/Software/qt5/src/qt-everywhere-opensource-src-5.4.0/qtbase/src'
Makefile:45: recipe for target 'sub-src-make_first' failed
make[1]: *** [sub-src-make_first] Error 2
make[1]: Leaving directory '/home/chris/Software/qt5/src/qt-everywhere-opensource-src-5.4.0/qtbase'
Makefile:70: recipe for target 'module-qtbase-make_first' failed
make: *** [module-qtbase-make_first] Error 2
==> ERROR: A failure occurred in build().
Aborting...
Not sure what happened. How do I get more information?
I need qt5-base with debugging symbols so I can get helpful traces for plasma-desktop crashes. So I should also ask: is it possible to modify the PKGBUILD to just compile qt5-base (and perhaps qt5-webkit and qt5-webengine)? qt5 is huge...
EDIT: and yes I had qtwebkit uninstalled at the time
Last edited by YAOMTC (2015-01-03 06:12:49)

I hate it when the only result for a problem is an unanswered question...
Anyway, invoking make manually uncovers what is the problem - there's a bunch of errors similar to this:
../gui/text/qfontengine_ft.cpp:1146:39: error: comparison between signed and unsigned integer expressions [-Werror=sign-compare]
for (int x = 0; x < slot->bitmap.width; x++) {
^
cc1plus: all warnings being treated as errors
So the -Werror is the culprit. Looking at the ./configure -help output it turns out that the -developer-build enables -Werror. But there's -no-warnings-are-errors. So yeah, passing -no-warnings-are-errors in addition to -developer-build should fix the compilation.
I have updated the wiki accordingly.
EDIT: the compilation gets a bit further, but it now fails because of tests.
EDIT2: it pays off to read configure rather than rely on some random suggestion from the wiki. There's a "-debug" option, which should just enable debugging. It hasn't finished compiling here yet, but it got a lot further than before.
Last edited by 6xx (2015-02-03 21:13:49)

Similar Messages

  • [solved]How to compile a software with debug symbol from aur?

    How does auch developers compile their project? Seems that archlinux user always trying to avoid build software from git/svn directly. But after searching a lot  I sill haven't found how to compile with debug symbol while using PKGBUILD.
    Anyone help?
    Last edited by ranjiao (2009-08-27 14:28:09)

    ranjiao wrote:PKGBUILD calls autogen.sh before calling make, and gnome-autogen.sh is called in autogen.sh
    I have tried to add --enable-debug while calling autogen.sh and gnome-autogen.sh, but it doesn't work.
    Isn't PKGBUILD just a script? It calls what you make it calls by adding commands...

  • Cannot compile code with debug symbols

    I have a source code file that will not compile with debug symbols. I get an assertion failed in file ../src/regman/regman_local.cc at line 5224. The compile command and output are below.
    /opt/SUNWspro/bin/cc -g -xarch=v9b -xopenmp=noopt -xc99=all -c -o output/spirecon.o spirecon.c
    cg: assertion failed in file ../src/regman/regman_local.cc at line 5224
    cg: Out of range
    cg: 1 errors
    cc: cg failed for spirecon.c
    However without the debug options and using the default -fast switch, i.e.
    /opt/SUNWspro/bin/cc -fast -xarch=v9b -xopenmp=noopt -xc99=all -c -o output/spirecon.o spirecon.c
    it compiles without any problems.
    I was hoping someone might have a suggestion as to how what might cause this type of error.

    I have been told this is bugid: 4420630
    It only happens when you try to use the optimizing
    backend code generator without any optimization.
    (That's what -xopenmp=noopt does)
    If you add an -xO1 flag the assertion should go away, but you
    will also lose some (but not all) of your debuggability.
    --chris                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • [Solved] Recompile Software with debugging symbols?

    Has anyone an idea how to compile darktable with debugging symbols? I've grabbed the sources from the arch package and added the strings
    export CFLAGS="$CFLAGS -O0 -fbuiltin -g"
    export CXXFLAGS="$CXXFLAGS -O0 -fbuiltin -g"
    to the PKGBUILD as the arch wiki described in the "Step by step debugging guide", but it don't seems to work proberly. I can't obtain a proper backtrace.
    "gdb darktable" only gives me the message:
    Reading symbols from /usr/bin/darktable...(no debugging symbols found)
    What's my fault?
    Last edited by Thorsten Reinbold (2013-12-29 14:40:22)

    Sorry, that was really stupid. Thanks for the hints, I was able to compile now. But the next problem is knocking on the door: when I try to get a backtrace, I get a "No stack."-message from gdb. Google wasn't helpful with this and those are my first steps in debugging. Maybe some has an Idea? I only need a full backtrace for an upstream bugreport.
    Edit: got it. There was a gdb Zombie in the background.
    Solved!
    Last edited by Thorsten Reinbold (2013-12-29 14:40:04)

  • Failed to build FirefoxOS with liblog.a

    Hello,
    I'm trying to build B2G on Fedora 20 (I followed all steps from the tutorial, therefore I think I don't have any missing requirement). I'm using GCC 4.4 (got binaries from the MDN's tutorial).
    No problem with config.sh but with build.sh I got :
    http://titanpad.com/firefoxosnontenda
    My .userconfig is :
    http://titanpad.com/firefoxosnontenda1
    Does anyone now how I can solve that ? Or have any idea on how I can try to solve it ?
    Thank you,
    Nontenda

    I had already resolved it.
    The problem was that I put the compensate activity inside a sequence, although the sequence is inside faulthandlers. The compensate must be the only activity within the faulthalers.
    Thanks for the hint :-)

  • XSDBuilder fails to build schema with mixed=false

    Hi,
    could you please help me. I have the schema as follow, note that the xs:complexContent element has mixed = false. When I use XSDBuilder to load this shema using method .build(..), I got following exception:
    <Line 5, Column 36>: XML-24526: (Error) Invalid attribute 'mixed' in element 'complexType'
    If I just change the mixed attribute to true, the XSDBuilder will load it successfully.
    Thanks alot.
    ==The schema ==
    <?xml version="1.0" encoding="utf-8"?>
    <xs:schema targetNamespace="http://tempuri.org/XMLSchema.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://tempuri.org/XMLSchema.xsd" xmlns:mstns="http://tempuri.org/XMLSchema.xsd" elementFormDefault="qualified">
         <xs:element name="FullName" type="tns:FullName"/>
         <xs:complexType name="FullName">
              <xs:complexContent mixed="false">
                   <xs:restriction base="xs:anyType">
                        <xs:sequence>
                             <xs:element name="FirstName" type="xs:string"/>
                             <xs:element name="MildName" type="xs:string"/>
                             <xs:element name="LastName" type="xs:string"/>
                        </xs:sequence>
                   </xs:restriction>
              </xs:complexContent>
         </xs:complexType>
    </xs:schema>

    More information: I'm using XDK 10g. The previous version XDK 9g doesn't have this problem.
    Thanks.

  • Failed to build Java Mail API 1.4.5 with maven-3.0.4

    Hi,
    I am trying to build Java Mail 1.4.5 with Maven-3.0.4 using default settings of maven.
    It is getting failed to build due to following errors -
    [ERROR] COMPILATION ERROR :
    [INFO] -----------------------------------------------------------
    [ERROR] \Workarea\mySourceData\src\Mail\mail\src\main\java\javax\mail\Session.java:[210,37] cannot find symbol
    symbol : variable Version
    location: class javax.mail.Session
    [ERROR] \Workarea\mySourceData\src\Mail\mail\src\main\java\javax\mail\Session.java:[369,47] cannot find symbol
    symbol : variable Version
    location: class javax.mail.Session
    [ERROR] \Workarea\mySourceData\src\Mail\mail\src\main\java\javax\mail\Session.java:[913,29] cannot find symbol
    symbol : variable Version
    location: class javax.mail.Session
    [ERROR] \Workarea\mySourceData\src\Mail\mail\src\main\java\javax\mail\Session.java:[916,29] cannot find symbol
    symbol : variable Version
    location: class javax.mail.Session
    [ERROR] \Workarea\mySourceData\src\Mail\mail\src\main\java\javax\mail\Session.java:[919,29] cannot find symbol
    symbol : variable Version
    location: class javax.mail.Session
    [ERROR] \Workarea\mySourceData\src\Mail\mail\src\main\java\javax\mail\Session.java:[922,29] cannot find symbol
    symbol : variable Version
    location: class javax.mail.Session
    [ERROR] \Workarea\mySourceData\src\Mail\mail\src\main\java\javax\mail\Session.java:[925,29] cannot find symbol
    symbol : variable Version
    location: class javax.mail.Session
    [ERROR] \Workarea\mySourceData\src\Mail\mail\src\main\java\javax\mail\Session.java:[928,29] cannot find symbol
    symbol : variable Version
    location: class javax.mail.Session
    [INFO] 8 errors
    [INFO] -----------------------------------------------------------
    [INFO] ----------------------------------------------------------------------
    [INFO] BUILD FAILURE
    [INFO] ----------------------------------------------------------------------
    [INFO] Total time: 1:51.197s
    [INFO] Finished at: Tue Jan 08 13:06:01 IST 2013
    [INFO] Final Memory: 12M/67M
    [INFO] ----------------------------------------------------------------------
    [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.
    3.2:compile (default-compile) on project javax.mail: Compilation failure: Compil
    ation failure:
    [ERROR] \Workarea\mySourceData\src\Mail\mail\src\main\java\javax\mail\Session.java:[210,37] cannot find symbol
    [ERROR] symbol : variable Version
    [ERROR] location: class javax.mail.Session
    [ERROR]\Workarea\mySourceData\src\Mail\mail\src\main\java\javax\mail\Session.java:[369,47] cannot find symbol
    [ERROR] symbol : variable Version
    [ERROR] location: class javax.mail.Session
    [ERROR] \Workarea\mySourceData\src\Mail\mail\src\main\java\javax\mail\Session.java:[913,29] cannot find symbol
    [ERROR] symbol : variable Version
    [ERROR] location: class javax.mail.Session
    [ERROR] \Workarea\mySourceData\src\Mail\mail\src\main\java\javax\mail\Session.java:[916,29] cannot find symbol
    [ERROR] symbol : variable Version
    [ERROR] location: class javax.mail.Session
    [ERROR] \Workarea\mySourceData\src\Mail\mail\src\main\java\javax\mail\Session.java:[919,29] cannot find symbol
    [ERROR] symbol : variable Version
    [ERROR] location: class javax.mail.Session
    [ERROR] \Workarea\mySourceData\src\Mail\mail\src\main\java\javax\mail\Session.java:[922,29] cannot find symbol
    [ERROR] symbol : variable Version
    [ERROR] location: class javax.mail.Session
    [ERROR]\Workarea\mySourceData\src\Mail\mail\src\main\java\javax\mail\Session.java:[925,29] cannot find symbol
    [ERROR] symbol : variable Version
    [ERROR] location: class javax.mail.Session
    [ERROR] \Workarea\mySourceData\src\Mail\mail\src\main\java\javax\mail\Session.java:[928,29] cannot find symbol
    [ERROR] symbol : variable Version
    [ERROR] location: class javax.mail.Session
    [ERROR] -> [Help 1]
    org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal o
    rg.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile (default-compile) on
    project javax.mail: Compilation failure
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor
    .java:213)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor
    .java:153)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor
    .java:145)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProje
    ct(LifecycleModuleBuilder.java:84)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProje
    ct(LifecycleModuleBuilder.java:59)
    at org.apache.maven.lifecycle.internal.LifecycleStarter.singleThreadedBu
    ild(LifecycleStarter.java:183)
    at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(Lifecycl
    eStarter.java:161)
    at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:320)
    at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:156)
    at org.apache.maven.cli.MavenCli.execute(MavenCli.java:537)
    at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:196)
    at org.apache.maven.cli.MavenCli.main(MavenCli.java:141)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:601)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Laun
    cher.java:290)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.jav
    a:230)
    at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(La
    uncher.java:409)
    at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:
    352)
    Caused by: org.apache.maven.plugin.CompilationFailureException: Compilation fail
    ure
    at org.apache.maven.plugin.AbstractCompilerMojo.execute(AbstractCompiler
    Mojo.java:656)
    at org.apache.maven.plugin.CompilerMojo.execute(CompilerMojo.java:128)
    at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(Default
    BuildPluginManager.java:101)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor
    .java:209)
    ... 19 more
    [ERROR]
    [ERROR]
    [ERROR] For more information about the errors and possible solutions, please rea
    d the following articles:
    [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureExceptionSame issue I am facing when I am trying to build Java Mail with netbeans - 7.2.1, it getting failed with same version issue in Session.java class.
    How can I set this Version in Session.java class to get rid of this error?
    If we can use nexus repository then please let me know how to set this.
    Thanks,
    Neelam Sharma

    I answered this question here:
    http://stackoverflow.com/questions/14217596/failed-to-build-java-mail-api-1-4-5-with-maven-3-0-4/14288418#14288418

  • Trying to build Mplayer with enable-aa

    My son wants to watch video in ascii mode, but the arch version of mplayer is compiled without support for aalib. I've tried to make my own version
    using the current pkgbuild and changing "--disable-aa" to "--enable-aa", but after a while of compiling, the build aborts with the following:
    libvo/libvo.a(vo_aa.o): In function `uninit':
    vo_aa.c:(.text+0x17d): undefined reference to `aa_close'
    libvo/libvo.a(vo_aa.o): In function `draw_slice':
    vo_aa.c:(.text+0x325): undefined reference to `aa_fastrender'
    vo_aa.c:(.text+0x35b): undefined reference to `aa_render'
    libvo/libvo.a(vo_aa.o): In function `draw_frame':
    vo_aa.c:(.text+0x44a): undefined reference to `aa_fastrender'
    vo_aa.c:(.text+0x4ae): undefined reference to `aa_render'
    libvo/libvo.a(vo_aa.o): In function `preinit':
    vo_aa.c:(.text+0xa8a): undefined reference to `aa_displayrecommended'
    vo_aa.c:(.text+0xa8f): undefined reference to `aa_getfirst'
    vo_aa.c:(.text+0xaa2): undefined reference to `aa_displayrecommended'
    vo_aa.c:(.text+0xaa7): undefined reference to `aa_recommendhi'
    vo_aa.c:(.text+0xaae): undefined reference to `aa_defparams'
    vo_aa.c:(.text+0xab3): undefined reference to `aa_autoinit'
    vo_aa.c:(.text+0xace): undefined reference to `aa_autoinitkbd'
    vo_aa.c:(.text+0xaec): undefined reference to `aa_resizehandler'
    vo_aa.c:(.text+0xaf9): undefined reference to `aa_hidecursor'
    vo_aa.c:(.text+0xafe): undefined reference to `aa_getrenderparams'
    vo_aa.c:(.text+0xbdb): undefined reference to `aa_defrenderparams'
    vo_aa.c:(.text+0xbe6): undefined reference to `aa_defparams'
    vo_aa.c:(.text+0xbeb): undefined reference to `aa_parseoptions'
    vo_aa.c:(.text+0xc0b): undefined reference to `aa_defrenderparams'
    vo_aa.c:(.text+0xc26): undefined reference to `aa_defparams'
    vo_aa.c:(.text+0xc2b): undefined reference to `aa_parseoptions'
    vo_aa.c:(.text+0xc82): undefined reference to `aa_help'
    vo_aa.c:(.text+0xdea): undefined reference to `aa_close'
    vo_aa.c:(.text+0xe28): undefined reference to `aa_displayrecommended'
    vo_aa.c:(.text+0xe2d): undefined reference to `aa_recommendlow'
    vo_aa.c:(.text+0xe38): undefined reference to `aa_displayrecommended'
    vo_aa.c:(.text+0xe3d): undefined reference to `aa_recommendhi'
    vo_aa.c:(.text+0xe48): undefined reference to `aa_displayrecommended'
    vo_aa.c:(.text+0xe4d): undefined reference to `aa_recommendhi'
    libvo/libvo.a(vo_aa.o): In function `printosdtext':
    vo_aa.c:(.text+0xf0b): undefined reference to `aa_printf'
    vo_aa.c:(.text+0xf67): undefined reference to `aa_printf'
    libvo/libvo.a(vo_aa.o): In function `flip_page':
    vo_aa.c:(.text+0x105e): undefined reference to `aa_flush'
    vo_aa.c:(.text+0x11bd): undefined reference to `aa_puts'
    vo_aa.c:(.text+0x11f9): undefined reference to `aa_puts'
    libvo/libvo.a(vo_aa.o): In function `check_events':
    vo_aa.c:(.text+0x137f): undefined reference to `aa_getevent'
    libvo/libvo.a(vo_aa.o): In function `resize':
    vo_aa.c:(.text+0x1817): undefined reference to `aa_resize'
    collect2: ld returned 1 exit status
    make: *** [mplayer] Error 1
    ==> ERROR: Build Failed. Aborting...
    Can someone help me out here? I imagine the answer is simple, but I can't get past this stage.

    diff -ur MPlayer-1.0pre8.orig/configure MPlayer-1.0pre8/configure
    --- MPlayer-1.0pre8.orig/configure 2006-06-11 20:35:47.000000000 +0200
    +++ MPlayer-1.0pre8/configure 2006-06-13 12:43:01.000000000 +0200
    @@ -4137,6 +4137,8 @@
    _def_aa='#define HAVE_AA 1'
    if cygwin ; then
    _ld_aa=`aalib-config --libs | cut -d " " -f 2,5,6`
    + else
    + _ld_aa="-laa"
    fi
    _vosrc="$_vosrc vo_aa.c"
    _vomodules="aa $_vomodules"
    This patch will help.

  • Secure link to itunes store failed computer not connected to internet tried ununininstalling everything to do with itunes no joy also error code coming up E0000225 anybody out there got any ideas

    Secure link to itunes store failed, (computer not connected to internet tried uninstalling everything to do with itunes,no joy also errror code E0000225 appearing. Have turned off windows firewall and also my Bullguarg security settings.Can anybody out there please help me thanks.

    Hi,
    You could be right that the response to clicking on help is a symptom of an entirely separate issue, but nevertheless the secure link to itunes is definitely failed, and I am unable to log into Itunes on either PC.
    I also noticed that even if I click on the link to create a whole new Apple ID, I cannot do that either, presumably because the secure link is not working.
    After I noticed that there were weird things happening this morning, I did change my Apple ID password in the hope that this might resolve it, but it seemed to make it worse.  Now, all of my apple devices keep constantly prompting me for the apple ID password, and randomly either accepting it, or telling me it is wrong.  I know the password is correct because I can log onto the apple Manage My Apple ID screens in a web browser with it.
    I was starting to think that this is an ISP issue (BT Broadband), but I have not seen anyone else posting with the same issue.  Does Apple use a different security protocol to everyone else?  I'm asking because all other secure services seem to be working fine, but anything related to apple that requires a secure connection or authentication is having issues.
    I have also seen reference to making sure that Itunes is listed as an allowed program in Windows Firewall.  I cannot seem to do this because it says that my Windows firewall is being managed by McCafee.  I have checked the settings in McCafee, and it appears to me that Itunes, Bonjour, and many other apple programs have been granted "Full" access.  As said before in any case I have tried temporarily disabling the firewall and even this did not solve the problem.

  • Just tried to upgrade to SnowLeopard with new software. iLife failed to download and now the computer will not start up--grey screen with lines going round and round in a circle. What can I do to get it to start up?

    Just tried to upgrade to SnowLeopard with newly purchased software disc. iLife failed to download and when I tried to restart the computer, it will not do so--just get a grey screen with the lines going around and around. Any ideas about how to get it to start?

    Mac Pro - Mid 2010
    Processor  2 x 2.66 GHz 6-Core Intel Xeon
    Memory  8 GB 1333 MHz DDR3 ECC
    Graphics  ATI Radeon HD 5870 1024 MB
    Software  Mac OS X Lion 10.7.2 (11C74)
    This is a brand new machine that I just purchased from Apple. It was delivered yesterday
    The old computer is an old PowerMac G5, but my OS X install disc is a retail version of 10.5.
    I also tried the OS X 10.5 install disc that came with my MacBook Pro (2.6 Ghz Intel Core 2 Dual).
    Same issue - nothing but a grey screen when the system tries to boot from the DVD

  • HT201210 I tried to restore my iPhone 4s through iTunes and received error message that Restore could not be completed due to error 2003. Phone now not recognized in iTunes, with prompt to restore, phone w/screen with iTunes symbol and can't use.

    I tried to restore my iPhone 4s through iTunes and received error message that Restore could not be completed due to error 2003. Phone now not recognized in iTunes, with repeated prompts to restore phone. Now phone w/screen with iTunes symbol and USB cord can't use. It appears the phone has been restored, but I cannot activate it.
    I disabled my anti-software, iTunes and computer software (microsoft vista) are both up to date, I restarted the computer several times. My usb ports are working properly. I followed the troubleshooting suggestions from apple.

    yes did you buy it of somebody or a well known company such as apple or carphone warehouse?
    and i mean the phone would have been activated in the first place with the sim card you get given when you first get the phone.
    trying to activate the phone with another sim card that you did not get when you brought the phone may result in you not being able to activate it
    no worries

  • Build finished with ERROR - Failed to pack public part

    Hi,
    I am getting an error when I try to build a Development Component in CBS. This is what the build log says:
    Ant build finished with ERRORS
    Failed to pack public part: Failed to get InputStream for resource D:\usr\sap\PVD\JC01\j2ee\cluster\server0\temp\CBS\2\7\.B\3570\DCs\vecnet.co.nz\general\rimp\preq\preqform\preqcreate\_comp\src\configuration\Components\nz.co.vecnet.general.rimp.preq.preqform.preqcreate.CreatePurchReqComp\CreatePurchReqCompView_Create_Purch_Req_IF.xdp
    Error: Build stopped due to an error: Failed to pack public part: Failed to get InputStream for resource D:\usr\sap\PVD\JC01\j2ee\cluster\server0\temp\CBS\2\7\.B\3570\DCs\vecnet.co.nz\general\rimp\preq\preqform\preqcreate\_comp\src\configuration\Components\nz.co.vecnet.general.rimp.preq.preqform.preqcreate.CreatePurchReqComp\CreatePurchReqCompView_Create_Purch_Req_IF.xdp
    Build plugin finished at 2008-10-02 15:31:45 GMT12:00 (NZDT)+
    Total build plugin runtime: 31.769 seconds
    Build finished with ERROR
    Could you please tell me why I am getting this error, and how do I resolve this one?
    Thanks,
    Ajay

    Was never able to find an answer for this on SDN and haven't had the issue in a long time so I'm closing question.

  • The PyramidVille game in Facebook is not loading.I have no problems with the other games.I'm receiving the message" Forbidden 403" CSRF Verification failed.Request aborted. More information is available with Debug= True

    The PyramidVille game in Facebook is not loading.I have no problems with the other games.I'm receiving the message" Forbidden 403" CSRF Verification failed.Request aborted. More information is available with Debug= True edit

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove the Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"
    Reload web page(s) and bypass the cache.
    * Press and hold Shift and left-click the Reload button.
    * Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    * Press "Cmd + Shift + R" (MAC)

  • IE9 Debugging With Debug Player 11.3 Fails locally

    Can someone give me the lowdown on why I can't debug my flash projects locally in IE9 ?
    The debug player 11.3 is sucessfully installed, the embed code is sound, the security settings are correct, no active x filtering, and content allowed in security settings. No sandbox issue etc.
    Does IE 9 not allow it ?
    I usually don't debug in IE9 but since I have it on my machine, Its worthwhile to know what is going on here so any info appreciated.
    I SHOULD SAY THAT OF COURSE ONLINE CONTENT WORKS JUST FINE. BUT FLASHBUILDER 4.6 CAN NOT CONNECT IN IE9 TO DEBUGGER. ALL OTHER BROWSERS WORK FINE
    WHY?

    Yes, works fine in chrome and in firefox with debug player just ie 9 doesnt.
    I can assure you I have the debug installed. Tested, and worked with flash some 8 years now so can verify that both with actionscript and by rightclicking >debug,
    But Flashbuilder will not connect locally to IE9

  • [svn:fx-trunk] 6253: Build unsigned RSLs with debug information.

    Revision: 6253
    Author:   [email protected]
    Date:     2009-04-24 12:39:26 -0700 (Fri, 24 Apr 2009)
    Log Message:

    hi
    i had the same problem, fixed it by building scons with the pkgbuild mentioned in this bug report http://bugs.archlinux.org/task/12076

Maybe you are looking for

  • No keyboard/mouse working after update

    Today I performed a regular pacman -Syu and rebooted the system (a laptop). After that, X loads until GMD, but I can't use any of the input devices. I can access as single user (no network, BTW) and downgraded xorg-server and xorg-server-common (Read

  • Reinstalled itunes 10 64bit on pc running Windows 7 64 bit but nothing plays now.

    itunes 10 stopped playing tracks when I clicked on them. So have just reinstalled ver10 64 bit on pc running Win 7 64bit, rebooted computer but still won't play. Have recently updated Nvidia display drivers (64bit) but wouldn't think this would affec

  • I'm having problems installing Adobe Photoshop Elements 12.

    I'm having problems installing Adobe Photoshop Elements 12. The problem is right at the end of installation, it (the Install Shield Wizard) says status is registering and then immediately does an action rollback. The message I get is: 'The wizard was

  • Having Font Issues

    I am having some issues with fonts not displaying correctly in some applications. In Entourage and the Dictionary widget, specifically. With incoming emails, but only some of them, the font is completely illegible; it's like it's taking all the speci

  • Exchange rate diff amount posted to AUC asset

    Hello All, I am stuck with one issue and looking for some help We are creating purchase order with account assignment as projects and then doing MIGO & MIRO and then settling through CJ88 to AUC asset. The issue is related to exchange rate difference