Tagged Questions
0
votes
1answer
57 views
How to handle multilevel includes in c?
I have second level include that is giving me grief:
Undefined first referenced
symbol in file
function2 /var/tmp//ccAPaWbT.o
...
0
votes
2answers
40 views
Is it possible to include functions from .c file without compiling it?
I am restricted by very specific (and rather senseless...) filing system and I can't create header files or split existing files into files holding only functions and only execution calls. I can only ...
0
votes
1answer
67 views
Get list of all header files inclusion for every file in the project
I need to see all includes from every file, just -H without filename gives me headers names, but I don't understand what file is including them, and that is what want.
I also tried -M with -MF, but ...
0
votes
1answer
123 views
undefined reference to `sleep'
I just installed Codeblocks on my new PC,
now I'm trying to get a library running called CML(its a library from school and it's not very good) but I'm getting a strange error when i try to run some ...
-2
votes
2answers
106 views
How to compile library on C using GCC?
I made a library with the files pila.h and pila.c. I compile the file pila.c with gcc pila.c -c and this library works fine. I have tested it.
Then I made another library. This library has the files ...
1
vote
2answers
76 views
Why don't I have to include my header files when compiling with GCC?
It was my understanding that in order to use a function declared in a header file and defined in a matching source file, said header file must be included before main(). So why does the following ...
0
votes
0answers
81 views
gcc include path for nested directories
I'm resurrecting legacy code.
Below is a simple example of the file structure and code I am working with.
It would appear the compiler is looking for 'class/class/class2.h'.
If I enter g++ -I. ...
0
votes
3answers
158 views
Good practices when adding downloaded c++ source code to my project
I am trying to use gnuplot++, but this is really a more general question about downloaded source code. I have downloaded the gnuplot++ source code and it consists of multiple .h and .cc files. I would ...
2
votes
1answer
75 views
The include, bin, and lib directories for cygwin gcc/g++ compilers
I'm trying to install a programming library onto Cygwin, and I have all the things I need except that I don't know where to put the include, bin, and lib files that the library uses. I've tried ...
0
votes
0answers
47 views
Disabling Particular GCC Warning from Header File
The OpenCL header file cl_gl_ext.h contains a problem found by -Wcomment on line 44. I have the following structure (slightly simplified for clarity):
opencl_includes.h:
#pragma GCC diagnostic push
...
0
votes
0answers
109 views
Eclipse and FFTW
I have some troubles in making a FFTW (and FFTW++) static project in Eclipse in my MacOS Lion. Have someone already made it?
I've made a separate folder for the include files, but it seems like it ...
5
votes
3answers
97 views
Making a class usable to other programs
I'm building an evolution simulator in C++, but not as a "real" runnable program, but rather a class that other programs should #include. This class, called World, has some functions such as update(), ...
3
votes
1answer
104 views
prevent gcc from searching the current dir “-I-” option on include seach path
our dev env makes heavy use of directories with locally modified headers that should be seen by the compiler instead of the "committed" "repository" versions.
If header A includes header B gcc looks ...
3
votes
2answers
82 views
G++ shows error about undefined namespace
I have 3 files to compile with G++, the main file is like this:
//main.cpp
#include "test.hpp"
int main(int argc,char** args) {
//
}
The second file is the header file:
//test.hpp
namespace ...
2
votes
1answer
522 views
Is g++ “-MMD” better than include scanning?
Whilst looking at build systems, a lot of them (SCons, bjam, cmake, Tundra, etc) have a built-in #include scanner. Yet gcc & icc offer a -MMD (or -MD) option which outputs the names of the header ...
2
votes
2answers
178 views
How do you include a header file that may or may not exist?
Let's assume I define BAR in foo.h. But foo.h might not exist. How do I include it, without the compiler complaining at me?
#include "foo.h"
#ifndef BAR
#define BAR 1
#endif
int main()
{
...
1
vote
2answers
265 views
How compiling is done in gcc
I got two files sendfdsock.c, accessories.c. In accessories.c I have defined various common functions (like logp - to print log) and included various common libraries (like sys/socket.h, string.h, ...
1
vote
1answer
133 views
Set include order of directory to last in gcc
Including the directory with -I command-line option in gcc appends the directory to the head of include directories.I want to add a directory to be searched after the system include directory.Is there ...
0
votes
1answer
862 views
CPLUS_INCLUDE_PATH doesn't works
I have set my environment variable CPLUS_INCLUDE_PATH to boost.
>echo $CPLUS_INCLUDE_PATH
boost
But it doesn't work at all.
>g++ parse_utils.cpp
parse_utils.cpp:1:34: fatal error: ...
3
votes
2answers
2k views
g++ default header include list
While performing a compilation with cross g++ in a Linux machine ( lubuntu 11.10 ) in verbose mode, I can see the list of the default include header directories:
#include <...> search starts ...
1
vote
1answer
290 views
GCC strange behaviour with full path include vs search path include
I've encountered GCC include behavior that I'm trying to understand. The example I'm providing is the simplest test code, the actual code (and this behavior) are the result of a tool I'm using to ...
1
vote
2answers
1k views
gcc : Unable to find Python.h, When its there in /usr/includes/python2.7?
My C code:
#include<stdio.h>
#include "Python.h"
int main()
{
printf("Hello World");
return 0;
}
I have python-dev installed for python2.7. Moreover, Python.h is available in ...
1
vote
2answers
212 views
Compiling from Netbeans fails, but from terminal works
I have a problem with having Netbeans compile the way I want to. I can't get Netbeans to compile my program. When I'm in the Ubuntu Terminal I can compile my program with the following command:
gcc ...
1
vote
1answer
45 views
gcc don't respect hierarchy of include files
I used the word hierarchy, but I'm not sure if it's the right one! Let me explain.
I have A.h with:
#include <iostream>
#include <vector>
using namespace std;
I have B.h with:
typedef ...
0
votes
1answer
138 views
How can I specify an include file from the GCC Command Line?
Using GCC under Windows, I would like to be able to specify on the gcc command line (or from a manually managed makefile) the name of a specific include file to be included in the file being compiled. ...
2
votes
2answers
164 views
scope g++ pedantic compile
Is it possible to restict the -pedantic switch for certain files? For example I compile stuff using alsa-lib, which I refer with standard
#include <alsa/asoundlib.h>
however -pedantic panics ...
2
votes
2answers
597 views
GCC 4.7, including <stdatomic.h>
I've just compiled GCC 4.7 to work with stdatomic.h, but I can't seem to -I it. stdatomic.h seems to live in /usr/include/c++/4.4.3, but then the linker tells me it needs a bunch of other files in ...
2
votes
4answers
268 views
One line C program with include?
Right now I have this
#include <zlib.h>
int main ()
{
puts (ZLIB_VERSION);
}
As an exercise, is there any way I could get it to compile on one line, something like
#include ...
4
votes
2answers
6k views
Where is PATH_MAX defined in Linux?
Which header file should I invoke with #include to be able to use PATH_MAX as an int for sizing a string?
I want to be able to declare:
char *current_path[PATH_MAX];
But when I do so my compiler ...
1
vote
1answer
859 views
Compilation/Linking to Cairo Library
I am trying to test out a few simple Cairo programs, but I am having trouble figuring how to include the source files. I have installed the Cairo library - it's just a question of how to let gcc ...
0
votes
1answer
100 views
Including headers in header file doesn't make it included in implementation file - or am I just using wrong command to compile?
Well, I have a header (my_prog.h) which looks like this:
#ifndef __MY_HEADER_H
#define __MY_HEADER_H
#include <stddef.h>
typedef struct {
size_t something;
size_t something_else;
}
void ...
-1
votes
1answer
742 views
How do /usr/include files (e.g. string.h) relate to gcc version?
I have a Kubuntu 11.10 system with Eclipse-CDT Indigo. gcc-4.6 was installed along with Eclipse. I have since installed gcc-4.4 and gcc-4.2 via Ubuntu packages.
I can switch the /usr/bin/gcc symlink ...
2
votes
5answers
243 views
how to prohibit other developers to #include a third party header in C++
So there is third-party library that has a header file you need to include in order to use it. Since the implementation of the library is not object oriented I wrote a Class to encapsulate all usage ...
1
vote
0answers
174 views
specify include directory only for specific source files with gcc
I am wondering if it is possible to specify include directories to gcc such that only specific source files check that directory. What I mean is, I want a command line like this:
gcc -I[File1 ...
2
votes
3answers
3k views
cannot find -lc and -lm in g++ linux
I am using ubuntu and gcc and g++ were working fine but today it showed:
cannot find -lm
cannot find -lc
I searched and found it has something to do with /usr/bin/ld. which is symlink (i hope) to ...
1
vote
2answers
567 views
Why isn't my include directive working in gcc?
I'm working on some code that uses Open Dynamics Engine. I've worked with this code before on windows, but now I'm moving over to unix so I can get experience working with C under a unix environment ...
10
votes
2answers
10k views
stdlib.h: no such file or directory
I am using various stdlib functions like srand(), etc. I have the line
#include <stdlib.h>
at the top of my code.
I entered this on the command line:
# find / -name stdlib.h
find: ...
1
vote
1answer
51 views
gcc/xCode — #include that does not trigger an error (or warning) if the file does not exist?
Is this possible?
Basically, what I want to do is something like this:
#includeIfItExists "header.h"
and if header.h does not exist, the compiler simply continues on its merry way.
0
votes
1answer
200 views
gcc #include <> and #include “”, can I compile without changing one to the other?
I have been asked to recompile a rather old library of EMG processing cold so it works on modern Macs rather than the ancient SunOS workstation it is currently running on. It's been a painful road for ...
0
votes
2answers
446 views
including a .c file in another .c file
This is part of a homework assignment. What we have to do is write a makefile to compile previous homework solutions. The solutions were provided by the professor, and they're what will be used to ...
8
votes
3answers
3k views
g++ how to tell where a header file is included from
How can I tell where g++ was able to find an include file? Basically if I
#include <foo.h>
g++ will scan the search path, using any include options to add or alter the path. But, at the end ...
0
votes
1answer
1k views
gcc include path and symlinks
I am trying to compile Macports on Snow Leopard—specifically, the file src/macports1.0/get_systemconfiguration_proxies.c. This #includes CoreFoundation/CoreFoundation.h, which #includes ...
5
votes
3answers
544 views
How to see the actual order of include files after preprocessing?
I have one .cpp file that includes a few header files. These header files may include other header files as well. Include guards are in place to prevent including the same file twice.
Knowing that ...
1
vote
2answers
2k views
#include header with C declarations in an assembly file without errors?
I have an assembly file (asm.S) which needs a constant #define'd in a C header file (c_decls.h). The header file contains C function declarations in addition to the #define I want. Unfortunately, ...
2
votes
3answers
1k views
Can I get a report of ALL the libraries linked when building my C++ executable (gcc)? (including statically linked)
I have a C++ application that I inherited, which consists of:
My main app
Several app-specific libraries (libapp1, libapp2, etc...)
Several "third party" libraries (most "third partis are just other ...
4
votes
3answers
2k views
How can I control the way gcc/g++ automatically includes headers?
I've run into trouble in the past when I've tried porting some C++ code written on Mac OS X to a Linux system, or trying to compile code written against an older version of gcc/g++ with a newer one:
...
2
votes
3answers
2k views
Can't compile C++ in Ubuntu using GCC — Include/Library Problems (collect2: ld returned 1 exit status)
I guess I'm not linking something right?
I want to call ABC.cpp which needs XYZ.h and XYZ.cpp. All are in my current directory and I've tried #include <XYZ.h> as well as#include "XYZ.h".
...
14
votes
3answers
5k views
Include header files from command line (gcc)?
Is it possible to specify extra header files to include from the command line (using GCC 4 / C++)?
Or is there any other way files can be included except with #include?
Background: I'm trying to ...
2
votes
4answers
302 views
GCC can't locate headers even when the search directory is correct
Once again, GCC is making me feel like an idiot for having trouble with the simplest things. I've included a header:
#include "PDL.h"
Then, I try to compile:
arm-none-linux-gnueabi-gcc ...
1
vote
1answer
330 views
Including non-standard C headers in C++
I needed to include a few c headers ( non standard header files ) in my C++ code to be compiled by gcc. The C header (foo.h) has support for :
#ifdef __cplusplus
extern "C" {
#endif
and ...
