forked from rofl0r/rcb
-
Notifications
You must be signed in to change notification settings - Fork 0
raulpuro/rcb
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
RcB - rofl0r's C builder. ========================= builds a C file holding a main method, by checking the headers it includes for RcB tags. such a tag might look like //RcB: DEP "mylib/*.c" //RcB: LINK "-lSDL" the first one tells RcB that the symbols defined in this header can be found in the listed C files. after gathering all dependencies, it starts trying to compile the main file, and analyses the compiler output for which dependencies are not fulfilled. it then starts multiple passes in which it compiles each referenced C file into an object file, and scans the symbols it defines. if those match the missing ones, the file will be added to the list of final dependencies. finally if there are no missing deps left, it will link them all together and create a simple text file containing a list of the required compilation units. on the next invocation, it will compile the target by simply passing all required C files to the compiler in one turn. this is much faster than compiling every C file on its own, and allows to use the same CFLAGS on all of them, and do nice optimization stuff like -flto -fwhole-program, which only work really nicely if the compiler gets all C files in exactly one statement. RcB tags -------- //RcB: CMD "param" "//RcB:" tells rcb that a rcb command starts here, and is treated by the C compiler as a comment. currently implemented commands: DEP tells rcb to add param to the dependency tree. LINK tells rcb to pass param to the compiler (i.e. "-lSDL"). it is advisable to use this only in your main .c file. SKIPON skip #include directives until SKIPOFF if param can be found inside CFLAGS. this is necessary to exclude headers that are conditionally used, and pull in more deps. necessary to workaround the fact that rcb doesn't have any means of preprocessing C code. SKIPOFF turn off skipping of #include directives if param can be found inside CFLAGS. SKIPUON same as SKIPON, but applies to all CFLAGS that are *NOT* found on the command line. SKIPUOFF same as SKIPOFF, but applies to all CFLAGS that are *NOT* found on the command line. CFLAGS and co ------------- RcB uses the following environment variables: RCBFLAGS (can contain one or more rcb command line arguments) CFLAGS CC NM linking to libraries -------------------- if you need to link to a specific library, you can pass it to rcb after the name of the main C file. just run rcb without arguments to see a list of options. parallel builds --------------- on my wishlist, but currently not possible. i usually build stuff with ~50 C files, which takes about 10-15 secs. gotcha's -------- * by default, rcb uses existing .o files to speed up the process. however this can lead to some newly added symbols not being found. in this case use --force to force rcb to recompile everything. * after renaming or moving stuff around, the information in the .rcb file gets invalid. use --new to force rcb to remove the rcb file and recollect dependency information. NOTE: it is much safer to use --new than starting to delete .rcb files manually. if you're in a rush you might erase your c file instead of the rcb file accidentally. * after changing some defines, it is advisably to run rcb twice with --force. the first run will recompile all c files to object files (so that the symbols can be checked) and link them together, the second one will then use all the necessary C files for a clean recompile. this will make sure that the C files will be thrown at the compiler instead of the object files which may contain/lack (un)wanted code from previous compilations. so the rule of thumb is, whenever you run into problems - check that an rcb tag for your .c file exists - run rcb with --new and --force, followed by a second run with --force only. - if the problem persists, add --verbose and inspect which dependendiecs get pulled in from where.
About
builds a project by scanning the main C file for dependendies which are placed as comments
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published
Languages
- Perl 100.0%