When I make a use of Qwebview in my application. and then build it I get an error of
:: error: collect2: ld returned 1 exit status
:: error: [debug\Browseweb.exe] Error 1
so it does not run I have seached Quit But didn’t got the solution So what should I do to solve this error. if You have a Solution kindly help me.
That error is coming from the linker
ldand, based onerror: [debug\Browseweb.exe] Error 1, my first thought is that it’s a problem creating the executable file.If that error 1 matches what’s in errno.h, then it’s an EPERM error which is related to permissions. You should check whether the
debugdirectory exists and, if it does, check to make sure you can create files in there.However, given that you seem to be on a Windows platform (due to the backslash path separator and an exe extension), I’m not sure that’s the actual case.
One other thing that may be causing the problem is if your executable is running when you try to rebuild it.
I’ve seen this problem before under Windows since the OS locks the executable while it’s running.