|
When building projects in C++, I've found debugging linking errors to be tricky, especially when picking up other people's code. What strategies do people use for debugging and fixing linking errors?
Started by tsellon on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
An error I'....
If you see such an error you should make sure that every function you use is properly into the same lib file.
One of the common linking errors I've run into is when a function is used differently from how it's defined.
|
|
Although I love a good try/catch as much as the next guy/gal, I would like to just see all of my errors in the debug version of the Flash player. Instead of that, SOMETIMES they are getting shown by the player with an alert box (not mine, so I know it...
Started by yar on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
When I run the project in debug mode using FB don't have access to FB, set up your trace log (google flashlog.txt) and any errors should print exactly do you mean? There are situations ....
For me, the alert box has always been inconsistent.
|
|
I am fairly new to remote debugging in Visual Studio, and by new I mean I have never done it before. Here are the steps I have taken to try to remotely debug an application on one of the servers in our network:
open a website in VS2008 "\\server\website...
Started by Russ Bradberry on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
To add a pathname to the symbol file symbols are loaded manually is not selected, unless you want to load symbols manually when you debug.
Them it doesn't have the necessary debug symbols to break on.
|
Ask your Facebook Friends
|
I have an VB ASP.NET (.aspx) file that has deeply nested logic and I'm getting lots of build errors like "If must end with a matching End If" and "Do must end with a matching Loop". How do I begin to debug this beast to at least get it to build?
Started by JoelFan on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Really effed code that won't compile you sometimes have....
Debugging starts after you get it to compile.
That's how I approach a problem like this.
The simple answer is to remove a large nested section and if it passes add a bit more until it fails .
|
|
How can one debug errors related to code-signing and missing certificates? Can I do the process from command line?
In XCode under 'Organizer > Provisioning Profiles', I get 'A valid signing identity matching this profile could not be found in your ...
Started by notnoop on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
They should have been generated when you created the certificate request... .
Possible problems:
The certificates have expired
The certificates have been renewed without updating the application provisions
The private/public keys are missing from keychain .
|
|
Right now I get an error message saying:
No file _formulas.aux. ... ! Missing $ inserted. ...
I've tried looking for and single @f$ tags in the code, but I have not been successful in locating the culprit thus far. How can I go about solving this specific...
Started by Gilad Naor on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If, while the command line is displaying....
It sounds like one of your formulas has an error.
Are in the same directory as your[ a+b \f] the formula will be in "display" style .
The .log, .aux, etc.
With specific line numbers where errors occurred.
|
|
When over freeing a pointer you may see an error such as
"pointer being freed was not allocated"
When debugging with the simulator, I add a build argument MallocStackLogging = YES - this allows me to use malloc_history in the terminal to track down where...
Started by adam on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Go to the....
To access these settings, select your executable from the Groups & Files pane in XCode, then Get Info .
I generally use NSZombie for such things, check this out
You need to set the MallocStackLogging env variables on the target executable.. .
|
|
Hi,
Does anyone know a good way to debug errors in the Visual Studio Designer?
In our project we have tons of UserControls and many complex forms. For the complex ones, the Designer often throws various exceptions which doesn't help much and was wondering...
Started by Daisuke Shimamoto on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Very often these errors will occur because of some error or bad dependency....
When a designer error occurs, get a list of all changes to check out the initialization routines of the controls involved.
Use source control and save often.
|
|
I have an XP client that is experiencing an issue. My dev box is Vista Home 64. I start up the debugger on the client machine and when i try to run on the dev box, it says 'Unable to debug. Remote debugger doesn't support this version of windows'.
Looks...
Started by asp316 on
, 6 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Have you got any stace-trace or further information about your system.security error? Perhaps by compiling a debug version, rather than a release, you'll get more of an idea of what.
Through it there.
|
|
During development I've seen xml read errors like this more than once:
TestData.ReadFromXml: xml Deserialize error:There is an error in XML document (2, 2)..
What exactly does (2, 2) refer to? Is it line 2 in the xml file? Line 2, token 2, what?
Are there...
Started by P a u l on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Looking at your example.
You should examine the InnerException to get a more precise error message.
Try some xml validation tool to validate your xml file) .
At the Errors window to see if it complains at all.
|