Thanks to the both of you for the feedback on this, I really appreciate it.
Lynton
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
double doCalc(double x);
#include <stdio.h>
#include <stdlib.h>
double doCalc(double x){
double y;
printf("Number passed in: %fn", x);
y = x * 2;
printf("Number multiplied by 2 is: %fn", y);
return y;
}
CC = gcc
all: libdummy.so
libdummy.so:
$(CC) -m64 -Wall -g -I./ -c -fPIC ./dummy.c -o ./dummy.o
$(CC) -m64 -shared -o ./libdummy.so ./dummy.o -L/usr/lib64
clean:
rm ./*.so