Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0
0002 
0003 // pe-file.exe and pe-file.exe.debug built with;
0004 // x86_64-w64-mingw32-gcc -o pe-file.exe pe-file.c
0005 //   -Wl,--file-alignment,4096 -Wl,--build-id
0006 // x86_64-w64-mingw32-objcopy --only-keep-debug
0007 //   --compress-debug-sections pe-file.exe pe-file.exe.debug
0008 // x86_64-w64-mingw32-objcopy --strip-debug
0009 //   --add-gnu-debuglink=pe-file.exe.debug pe-file.exe
0010 
0011 int main(int argc, char const *argv[])
0012 {
0013     return 0;
0014 }