-1
votes
2answers
79 views
How to make this C program compile?
When I type gcc gprof-helper.c to compile the program I get these errors:
gprof-helper.c: In function `wooinit':
gprof-helper.c:38: error: `RTLD_NEXT' undeclared (first use in thi …
1
vote
1answer
33 views
Storing reporting assemblies (.net) in a database
I'm developing a project where users need to build reporting queries using complex Linq statements to generate data sets.
The best way I could think of to compile these user-gener …
0
votes
3answers
101 views
Separating Enums from Class Definitions using Namespaces in C++?
I'm working with a legacy class that looks like this:
class A
{
enum Flags { One = 1, Two = 2 };
};
I'd like to pull out all the enums into a new namespace defined in a new …
0
votes
1answer
124 views
error: ISO C++ forbids declaration of ‘iterator’ with no type
Hi, I am trying to build/run an old C++ system. I've already been able to built it in Ubuntu 9.10 with g++4.4
Now I'm trying to build in Ubuntu 8.04 with g++4.2. And I am getting …
0
votes
1answer
57 views
Conditional Compilation in assembler (.s) code for iPhone - how?
I have a few lines of assembler arm code in an .s file. Just a few routines i need to call. It works fine when building for the device, however when i switch to iPhone Simulator i …
6
votes
7answers
233 views
Why doesn’t the compiler detect out-of-bounds in string constant initialization?
I read this question and its answer in a book. But I didn't understand the book's justification.
Have a look:
Question:
Will the following code compile?
int main()
{
…
9
votes
3answers
110 views
What is the usefulness of CHECK, UNITCHECK and INIT blocks in Perl?
I know what they all do, but have never found myself in a situation where I've needed any of them. I've used BEGIN blocks on many occasions and ENDs once in a while. BEGIN is espec …
2
votes
2answers
96 views
How to compile a 32-bit binary on a 64-bit linux machines without touching the CFLAGS environment variable
The solution in
http://stackoverflow.com/questions/1272357/how-to-compile-a-32-bit-binary-on-a-64-bit-linux-machine-with-gcc-cmake
is not possible because i use 3rd party softwar …
0
votes
4answers
60 views
Programming benefit of two quad quad core servers
Programmers often whine that if only they had a faster/more memory/more cores machine they would be much happier (they never say more productive).
Can anyone think of a programmin …
0
votes
2answers
204 views
How should a very simple Makefile look like for Cuda compiling under linux
Hi,
I want to compile a very basic hello world level Cuda program under Linux. I have three files:
the kernel: helloWorld.cu
main method: helloWorld.cpp
common header: helloWo …
2
votes
0answers
45 views
C#: What can you change in an assembly without needing to recompile other assemblies? [closed]
Possible Duplicate:
A definite guide to API-breaking changes in .NET
I assume you can change the inner workings of a method or property, and probably anything private. I a …
3
votes
8answers
199 views
Is it a good practice to always create a .cpp for each .h in a C++ project ?
Some classes, like exceptions or templates, only need the header file (.h), often there is no .cpp related to them.
I have seen some projects were (for some classes) there aren't …
0
votes
2answers
91 views
Conversion problem
I'm using gcc 4.3.2.
I have the following code (simplified):
#include <cstdlib>
template<int SIZE>
class Buffer
{
public:
explicit Buffer(const char *p = NULL) { …
2
votes
4answers
179 views
Java / Eclipse : How does Eclipse compile classes with only a JRE ?
I need to batch a compilation with a special JRE which has been "customized".
Eclipse is able to compile the classes with this JRE, but I need to make a build script outside of E …
0
votes
2answers
66 views
Recompiling same code produces different executable in VC++
I developed a Windows command line tool using C, and compiled it in VC++, sometimes back, and checked-in the source code. I cleaned the project before checking-in, which deleted th …
