18c2ecf20Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0
28c2ecf20Sopenharmony_ci
38c2ecf20Sopenharmony_ci// pe-file.exe and pe-file.exe.debug built with;
48c2ecf20Sopenharmony_ci// x86_64-w64-mingw32-gcc -o pe-file.exe pe-file.c
58c2ecf20Sopenharmony_ci//   -Wl,--file-alignment,4096 -Wl,--build-id
68c2ecf20Sopenharmony_ci// x86_64-w64-mingw32-objcopy --only-keep-debug
78c2ecf20Sopenharmony_ci//   --compress-debug-sections pe-file.exe pe-file.exe.debug
88c2ecf20Sopenharmony_ci// x86_64-w64-mingw32-objcopy --strip-debug
98c2ecf20Sopenharmony_ci//   --add-gnu-debuglink=pe-file.exe.debug pe-file.exe
108c2ecf20Sopenharmony_ci
118c2ecf20Sopenharmony_ciint main(int argc, char const *argv[])
128c2ecf20Sopenharmony_ci{
138c2ecf20Sopenharmony_ci	return 0;
148c2ecf20Sopenharmony_ci}
15