How can I install BCL (basic compression library)?
Mia Lopez
I want to install bcl (basic compression library)
I need to copy a file into the C compiler’s (gcc) lib directory, and copy a header file into the compiler’s (gcc) include directory.
I want to know where exactly these two directories are found in Ubuntu 14.04.
51 Answer
There is a Makefile included for the GNU C compiler (gcc).
Just run make from the src directory, and you will get a file called libbcl.a, which is a static link library that you can copy to your compiler’s lib directory.
You may also want to copy the .h files to your compiler’s include directory.
only question is where these 2 directories (compiler's lib and compiler's include) are found!!!