Making a shared object and than running it on arduino

Hi does anyone know how to make a small shared object and than map it to run on arduino uno.

You need to provide a lot more information.

A small shared object could be a bar of chocolate.

...R

Hey well basically to my understanding a .so file or a shared object is a runtime library that you can throw scripts at to create a runtime environment I need your help to do exactly that at its simplest. Since we are dealing with strings instead of files the shared object should be stored as a string or however is possible for the arduino

A "shared object" (.so) file is a Linux/Android dynamically linked library. Did you want to use them on one of the Arduino models that run Linux?

Well the arduino already uses GCC correct? because GCC is how the library is supposed to run if im not wrong.

8bitbacon:
Hey well basically to my understanding a .so file or a shared object is a runtime library

If you are asking can you run a linux runtime library on an Arduino the answer is NO.

GCC is a complier that can compile programs for many different computers. That does not mean the programs are interchangeable. And GCC does not "run" any programs.

...R

Alright thanks guys.