Skip to content

kamanashisroy/aroop_core

Repository files navigation

status

aroop core

This is complimentary C library for the aroop generated code.

Building

Aroop Core needs automake, libtool, pkg-config and check(unit-testing tool) installed.

Building core library binary is trivial. It is like ./autogen.sh;make;make install;

a/aroop_core$ ./autogen.sh
a/aroop_core$ make
...
...
a/aroop_core$ ls
libaroop_core_static.a libaroop_core_debug.a libaroop_core_basic.o  libaroop_core.o 
a/aroop_core$ make install

It is possible to optimize the binary by configuring as following,

./autogen.sh CFLAGS='-O3' CXXFLAGS='-O3'

It is also possible to add debug symbols by adding -ggdb3 flag.

./autogen.sh CFLAGS='-ggdb3' CXXFLAGS='-ggdb3'

After build we shall get the object files(libaroop_core_basic.o,libaroop_core.o) and also an archive(libaroop_core.a). You may link them to your binary using -laroop\_core flag. Otherwise you can also link the object file(libaroop_core.o) with the binary.

Internals

virtual method table

Reading

TASKS

tasks

About

No description, website, or topics provided.

Resources

License

GPL-3.0, GPL-3.0 licenses found

Licenses found

GPL-3.0
LICENSE
GPL-3.0
COPYING

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages