An implementation of the C standard library.
Run the following within the dcd_stdLib directory.
makeThis will generate a static library file lib_dcd_stdLib.a within the dcd_stdLib directory.
Note that object (".o") and dependency (".d") files are generated within the src directory, but these can be removed following Clean.
When compiling your code you can link to the static library as follows
gcc mySrcFile.c -o myExFile -L path/to/lib_dcd_stdLib.a -l_dcd_stdLib To remove the static library, as well as the object and dependency files, run the following within the dcd_stdLib directory.
make clean