i686-w64-mingw32-gcc -fstack-protector-strong

Steven Penny svnpenn@gmail.com
Fri Sep 8 23:01:00 GMT 2017


On Fri, 8 Sep 2017 10:14:54, Lee wrote:
> $ i686-w64-mingw32-gcc -o div.exe div.c
> $ ./div
>   works
> 
> $ i686-w64-mingw32-gcc -fstack-protector-strong -o div.exe div.c
> $ ./div
> C:/cygwin/home/Lee/t/div.exe: error while loading shared libraries: ?:
> cannot open shared object file: No such file or directory
> 
> $ ldd div.exe
>         ntdll.dll => /cygdrive/c/WINDOWS/SYSTEM32/ntdll.dll (0x7ffef5c50000)
>         ??? => ??? (0x778f0000)
>         wow64.dll => /cygdrive/c/WINDOWS/System32/wow64.dll (0x50e50000)
>         wow64win.dll => /cygdrive/c/WINDOWS/System32/wow64win.dll (0x50dd0000)
> 
> $ i686-w64-mingw32-gcc --version
> i686-w64-mingw32-gcc (GCC) 5.4.0

You need to paste or link to div.c, otherwise this seems a pointless exercise.
See, I cannot repro:

$ cat div.c
#include <stdio.h>
int main() {
  puts("hello world");
}

$ x86_64-w64-mingw32-gcc -o div div.c
$ ./div
hello world

$ x86_64-w64-mingw32-gcc -fstack-protector-strong -o div div.c
$ ./div
hello world

$ ldd div
ntdll.dll => /cygdrive/c/Windows/SYSTEM32/ntdll.dll (0x773a0000)
kernel32.dll => /cygdrive/c/Windows/system32/kernel32.dll (0x77180000)
KERNELBASE.dll => /cygdrive/c/Windows/system32/KERNELBASE.dll (0x7fefd1a0000)
msvcrt.dll => /cygdrive/c/Windows/system32/msvcrt.dll (0x7fefde00000)

$ x86_64-w64-mingw32-gcc --version
x86_64-w64-mingw32-gcc (GCC) 5.4.0


--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple



More information about the Cygwin mailing list