Displaying 1 result from an estimated 1 matches for "mylibrary_res".
2006 Oct 25
1
Cross-compilation
...package I wrote using the Yan and Rossini
tutorial "Building Microsoft Windows versions of R and R packages using
Intel Linux". I have got reasonably far with this but when doing the
linking using the line:
i586-mingw32-g++ -shared -s -o mylibrary.dll mylibrary.def mylibrary.o
mylibrary_res.o -L/my/path/RCrossBuild/WinR/R-2.4.0/bin -lR
I get lots of these type of messages:
/my/path/to/mylibrary.cpp:43: undefined reference to
`_GLOBAL_OFFSET_TABLE_'
and other similar linker errors for virtually every object and command in
the program. After some googling I have found that t...