You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
how could I if I first compile c and generate .so and with .h files
for example for the chapter 1: gcc -g -O2 -fpic -c mycode.c -o mycode.o gcc -g -O2 -shared -o mycode.so mycode.o
if I don't have any mycode.c and mycode.o files.
how could I use Cython to compile the .pyx.
Thanks.
The text was updated successfully, but these errors were encountered:
how could I if I first compile c and generate .so and with .h files
for example for the chapter 1:
gcc -g -O2 -fpic -c mycode.c -o mycode.o
gcc -g -O2 -shared -o mycode.so mycode.o
if I don't have any mycode.c and mycode.o files.
how could I use Cython to compile the .pyx.
Thanks.
The text was updated successfully, but these errors were encountered: