15 lines · c
1// SPDX-License-Identifier: GPL-2.02 3// pe-file.exe and pe-file.exe.debug built with;4// x86_64-w64-mingw32-gcc -o pe-file.exe pe-file.c5// -Wl,--file-alignment,4096 -Wl,--build-id6// x86_64-w64-mingw32-objcopy --only-keep-debug7// --compress-debug-sections pe-file.exe pe-file.exe.debug8// x86_64-w64-mingw32-objcopy --strip-debug9// --add-gnu-debuglink=pe-file.exe.debug pe-file.exe10 11int main(int argc, char const *argv[])12{13 return 0;14}15