Skip to content

jkane17/dcd_stdLib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

DCD C Standard Library

An implementation of the C standard library.


Make the static library file

Run the following within the dcd_stdLib directory.

make

This 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.


Linking to your own C programs (GCC)

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 

Clean

To remove the static library, as well as the object and dependency files, run the following within the dcd_stdLib directory.

make clean

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published