Velvet Star Monitor

Standout celebrity highlights with iconic style.

updates

How can I install BCL (basic compression library)?

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

5

1 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!!!

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy