Search:

Type: Posts; User: Ectara

Search: Search took 0.01 seconds.

  1. Replies
    6
    Views
    3,154

    Turns out I'm an idiot, and made a typo: g++...

    Turns out I'm an idiot, and made a typo:

    g++ -fPIC -c libectarica.cpp
    g++ -O2 -g3-shared -lm -ldl -lectara -lSDL -lGL -lGLU -Wall -Wl,-soname,libectarica.so.0 -o libectarica.so.0.8 *.o
    ...
  2. Replies
    6
    Views
    3,154

    I rewrote the library in C89, so no part of it is...

    I rewrote the library in C89, so no part of it is C++ anymore. There is a second library that I wrote that depends on this library, and it happens to be written in C++, but I'm pretty sure it doesn't...
  3. Replies
    6
    Views
    3,154

    Congrats on 3k posts, by the way.

    Congrats on 3k posts, by the way.
  4. Replies
    6
    Views
    3,154

    I use no makefile to do this; rather, just source...

    I use no makefile to do this; rather, just source and compiler. The commands I do use are:

    gcc -fPIC -c libectara.c
    gcc -O3 -g3 -shared -lm -ldl -Wall -Wl,-soname,libectara.so.1 -o...
  5. Replies
    6
    Views
    3,154

    Compiling A Shared library

    I have a library that I've been writing for the past couple years, and I finally decided to port it to C from C++. After doing all this and making sure the syntax was right in all the code, I now...
Results 1 to 5 of 5