Skip to content

Instantly share code, notes, and snippets.

@mdboom
Created May 5, 2022 23:10
Show Gist options
  • Save mdboom/8f84bde1e0e5299c375c68fc845b074d to your computer and use it in GitHub Desktop.
Save mdboom/8f84bde1e0e5299c375c68fc845b074d to your computer and use it in GitHub Desktop.
#!/bin/sh
gcc -c -fPIC test.c
gcc -shared -o liba.so test.o
int int_foo_int(int a) {
return a + 1;
}
import timeit
print(
timeit.timeit(
"ext.int_foo_int(1)",
setup="from ctypes import cdll; ext = cdll.LoadLibrary('./liba.so')",
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment