Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm completely new to C++, but I have created a minor program, looking to port the program to other computers, but when I "install" the program I get this error...-static-libgcc -static-libstdc++ missing, is there a file I should be including in the program itself, or is this a library I have to install on each computer? The computers that I expect to run the program will be windows xp. Source code of the file is as follows:

#include <stdlib.h>
#include <windows.h>
#include <direct.h>
#include <string.h>
#include <string>
#include <iostream>
using namespace std;

int main(int argc, const char *argv[])
{
    _chdir("C:\\Program Files\\NCHSoftware\\Talk\\");
    string number = "start talk.exe -dial " + std::string(argv[1]+4);
    system(number.c_str());
    exit;
    return 0;
}
share|improve this question
2  
Most people would do this with a shell script or .bat file, not a C++ program. – Chris Stratton May 18 '12 at 16:08
3  
Have you been able to run the program on the machine where it was developed? What is really at issue here are the linker settings/flags, not the source code. Post the output of 'objdump -p your_executable | grep NEEDED' – Chris Stratton May 18 '12 at 16:11
Do i do this from the command prompt? Forgive me but as I said i'm new to C++ this is in fact my first program. When I type this in cmd, nothing happens. The program runs fine on the machine I developed it in. – user1401863 May 18 '12 at 16:19
2  
exit; What is this intended to do? – ildjarn May 18 '12 at 16:36
exit should't be there it does nothing for the program, it looks like the version i'm using is g++ 4.5.2. The only thing i'm interested in figuring out is how to make this program run on another computer, I tested and tried installing mingw on another computer, rebuilt the program and tried to run it, but i get a similar issue libgcc_s_dw2-1.dll was not found – user1401863 May 18 '12 at 16:49
show 1 more comment

1 Answer

up vote 2 down vote accepted

They are shared lib's that would need to be on the host computer.

To learn how to compile a static version;
See here: http://gcc.gnu.org/onlinedocs/gcc/Link-Options.html
Read the "-static-libgcc" & "-static-libstdc++" sections.

share|improve this answer
I read that too, I don't quite understand where I should be linking this. – user1401863 May 18 '12 at 16:51
When you compile you should pass those arguments to the compiler: g++ -static-libstdc++ ... – John Kaul May 18 '12 at 17:05
Thank you I tried to search for an example of linking, I understood the concept, but didn't know how to do it, in the end I compiled it as g++ -static-libgcc -static-libstdc++ dial.cpp -o dial.exe, program runs fine. As I read it did make the file larger, but as that wasn't something that was an immediate concern, I was fine with it. – user1401863 May 18 '12 at 18:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.