7
votes
7answers
1k views
Compilation fails randomly: “cannot open program database”
During a long compilation with Visual Studio 2005 (version 8.0.50727.762) I sometimes get the following error in several files in some project:
fatal error C1033: cannot open progr …
7
votes
5answers
426 views
Deciphering C++ template error messages
I'm really beginning to understand what people mean when they say that C++'s error messages are pretty terrible in regards to templates. I've seen horrendously long errors for thi …
4
votes
5answers
1k views
How to ignore gcc compiler pedantic errors in external library headers?
I recently added -pedantic and -pedantic-errors to my make gcc compile options to help cleanup my cross platform code. All was fine until it finds errors in external included heade …
3
votes
2answers
95 views
Eclipse compiling problem
Is there a way to set Eclipse report compile errors same as javac?
I stumble upon few cases where something is working in eclipse, and cannot be compiled with javac. I understand …
3
votes
2answers
80 views
Why is an event firing during compilation of a VB6 app?
I am trying to compile a VB6 application, but it fails with the error, "Run-time error '91': Object variable or With block variable not set". It turns out the Resize event of a us …
3
votes
7answers
568 views
linux kernel module linker warnings: “*** Warning: <function> [<module>] undefined!” - any way to get rid of them?
While compiling Linux kernel modules that depend on each other, linker gives undefined symbol warnings like
Building modules, stage 2.
MODPOST
*** Warning: "function_name1" [mo …
0
votes
5answers
69 views
Buffered Images in java
static BufferedImage img1[];
for(int i=0;i<60;i++)
{
img1[i] = new BufferedImage((int) (width), (int) (height), BufferedImage.TYPE_INT_RGB);
}
It shows an error o …
0
votes
2answers
67 views
[Java6] Same source code, Eclipse build success but Maven (javac) fails
Keep getting this error when compiling using Maven:
type parameters of <X>X cannot be determined; no unique maximal instance exists for type variable X with upper bounds int …
0
votes
1answer
67 views
Qt Linking Error.
Hi,
I configure qt-x11 with following options
./configure -prefix /iTalk/qtx11 -prefix-install -bindir /iTalk/qtx11-install/bin -libdir /iTalk/qtx11-install/lib -docdir /iTalk/qt …
0
votes
2answers
156 views
New string added to .resx file in VS2008 cause compilation error that it doesn’t exist
I recently upgraded my projects from VS2005 to VS2008. I use a .resx file to store strings and it worked fine with VS2005.
Now, with VS2008, I added a new string to Strings.resx …
0
votes
2answers
106 views
asp.net mvc page cant find reference
i created a new class called HTMLRenderer and i am calling it from my aspx view code
namespace Golf.Content
{
public static class HtmlRenderer
{
public stati …
0
votes
2answers
150 views
What caused the “Fatal error in ccfe” compilation error in the Solaris C++ compiler?
I got this error message from the C++ compiler:
CC: Fatal error in ccfe: Segmentation Fault (core dumped)
What could cause it?
0
votes
1answer
231 views
Error when compiling C program
Hi, I'm trying to complete a project for school involving the use of semaphores. I have included the proper header files ( plus one for pthreads). I have pointed the compiler to th …
0
votes
2answers
473 views
Compilation error on Zxing
Since I don't own a G1 for development purposes, I am doing my best with the emulator.
This said, I am trying to scan a JPEG image or a PNG image in my sdCard, with the ZXing (Zebr …
0
votes
4answers
480 views
HierarchicalDataTemplate and TreeView binding compilation error
Hi,
I have implemented a UserControl and put a TreeView control on that. The XAML file looks as follows. I am using a HierarchicalDataTemplate for data binding with the Treeview, …
