libsimavr package for arch linux

Some hours ago i published my version of a simavr package-build for arch linux. It is a derived version of the already existing package from the aur wich is extended by the libsimavr.so shared library and headerfiles. To work with the internals of simavr as covered in my recent article about capturing waveforms they are essential. So i decided to publish my version which i use for development with simavr.

I don't know if the location for the headers is ok, but i placed them in '/usr/include/simavr'. If you want to use them in your projects, simply add "-l simavr" to your compiler flags and put somthing like this in your source-files:

#include <simavr/sim_avr.h>
#include <simavr/sim_elf.h>

int main(){
  return 0;
}

Links