libraries

Where to put third party libraries to setup a c++ linux development environment?

Hello all! I'm not new in C++ although I'm new in Linux. I'm using CMake to precompile a cross platform game engine with some third party, but I have a lot of doubts about using libraries. My question is how to work with third party libraries. And where to put this libs. Apt installs libs in their official place (/usr/local, /usr/lib/ .....

readymade workspace of 3rd party libraries (c++)

I work at a startup. Recently, we planned to build up a workspace so that our team can work together efficiently by sharing and we can have multiple projects inside our workspace. We are integrating a number of 3rdparty libraries[with code] in our cross platform workspace. Wondering if we could get some existing project workspace which ...

Libraries/Tools for Website Parsing

I would like to start working with parsing large numbers of raw HTML pages into semantic data structures. Just interested in the community opinion on various available tools for such a task, particularly various useful libraries in any language. So far, planning on using Hadoop to manage a lot of the processing, but curious about alter...

Installing Libraries on a Server

I'm fairly noob at the using the terminal and doing server administration. I recently "inherited" a Twitter app, and I need to install a Python OAuth library: http://dev.twitter.com/pages/oauth_libraries#python Unfortunately, I'm pretty much clueless about how to: download a library to the server installing the library on the server ...

Cross compile with another library.

How to compile with another set of libraries. When I compile on i686 Fedora 13 computer, it works fine. However, when I take the executable (via thumbdrive) and try to run it on another i386 machine, I get the following error message. /usr/lib/libstdc++.so.6: version ‘GLIBCXX_3.4.9’ not found (required by ./Recorder) Okay, so I have t...

How should I set up RAD/Eclipse to work with JavaScript files and libraries?

I'm working on some javascript files in a Maven project web application in RAD 7.5. My files use libraries, and refer to each other. I'm having trouble working out how to set RAD up so that I get error-checking and code completion. Right now, all my scripts show errors wherever I use an external library. I've set up my folders and scri...

Why do static libraries end in '.a' c++/c ?

Just doing a little work this morning making some static libraries and wanted to know why static libraries end with '.a'. No one in my office knew so I thought I would ask around on SO. We are writing code in C++/C/Obj-C ...

read write excel file on server

I would like to know your libraries recommendations to read and write Excel applications on ASP .NET website. I have tried GemBox and NPOI, because they don't required Excel to be installed on the server, but they have some limitations on handling Excel files that are marked to read only. Any good and stable libraries that you recomend...

"Referenced Libraries"-collapsable gone when checking out Eclipse project from SVN.

I have created an Eclipse project with a number of referenced jar files. I use a variable to specify the local folder of the jar files. However when I check out this project to another machine Eclipse does not organize the referenced files under a "Referenced Libraries" pin. Instead it just lists all of the files. Any ideas why this hap...

How do I track which libraries are being dynamically loaded by an application?

I have an application (for which I do not have the source code). I know that it is designed to dynamically load a shared library, depending on the command line parameters. I know which library it should be loading and I've set up LD_LIBRARY_PATH to the appropriate directory. The application works on one server without any problems, bu...

Setting up a cross-platform C++ project in Eclipse with cross-platform libraries

I am working on a cross-platform C++ project with 8 other people which uses the following libraries: OpenCV Library Boost C++ Library The project is inteded to be cross-platform so all users have agreed not to use platform-specific code, and, to keep things as simple as possible, all users will be using Eclipse as their IDE. However,...

best practice or prior art for javascript scheduling calendar

This is a bit of a subjective question, and a red banner is warning me that it 'is likely to be closed', but I'm not sure of a better place to ask so here goes. My application calls for a very lightweight display-only scheduling calendar. Essentially an appointment book where you can see a few days or maybe a month at a time, and in ea...

How to distinguish a framework from a library of functions?

Is there a definition of "framework" that could be used to distinguish a framework from a collection of utilities functions and/or libraries? Where does one end and the other start or is the line between them blurry? ...

opening a new window counteracts my "enforce_auth"

Hello, On my social network. There are "home" links that take you to the appropriate index if you are signed in or out. There is a "index.php", that if you are browsing the site signed out, it takes you there, and if signed in, and hit "home" it takes you to "index_signedIn.php" This is working fine for me. The problem is, when I close ...

Library Projects support ?

Hi, I have been trying to work with a Library Project, just like it's mentioned in the documentation : http://developer.android.com/guide/developing/eclipse-adt.html I have created my Library Project as a Android 1.6 Project and now I have been trying to reference to it out of my second project (also an Android 1.6 project) and I am get...

charting libraries for Codeigniter 1.7.2

Hi Guys, I need a good charting library for my project which is done using Codeiginter. i have searched for libraries found a one called pinaci, but it states that it is for 1.4 and 1.5, can we use it with 1.7.2? can you guys suggest me a good one i can use, which you have used and have past experience? regards, Rangana ...

Are there any free CRC libraries that covers a lot of the CRC algorithms?

Been searching for a free reliable CRC library. I've tried rolling my own from the wikipedia algorithms posted but I read from some other sources that I have to take some other things like performance, endian, etc. into account. I don't think I have the time to explore every small thing. Can you recommend any libraries? Also this is i...

Running applications against a different SDK in OS X?

Summary I want to run my cross-compiled application against the 10.5 libraries. Is there an environmental variable that allows this to work? Longer version I cross-compiled my OS X C++ application for a 10.5 target, on a 10.6 host. It compiles fine. The compiled application is linked against libraries like /usr/lib/libstdc++.6.dylib. ...

Cross-Platform Building, Standard Directory Structures, Environment Variables

I've started using CMake as a build tool for a cross-platform command line program that requires FFTW3 and Boost.Format. I'm familiar with the Unix-like standard directory structures for headers and binaries of installed libraries but I'm wondering what the quasi standard is on Windows platforms as to how and where libraries are installe...

cross referencing libraries and linking in C

Hi, I have two C static libraries libA and libB that I link against my executable E. libA has a function that makes a call to a function that is in libB: myLibAFunctionThatCallsAfunctionInLibB( ... ) { libB_function(...); } Both libraries compile fine. My executable E also compiles fine. E is compiled with gcc using -lA -lB flags ...