Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/can1357/linux-pe
COFF and Portable Executable format described using standard C++ with no dependencies.
https://github.com/can1357/linux-pe
coff pe portable-executable windows
Last synced: 6 days ago
JSON representation
COFF and Portable Executable format described using standard C++ with no dependencies.
- Host: GitHub
- URL: https://github.com/can1357/linux-pe
- Owner: can1357
- License: bsd-3-clause
- Created: 2020-01-15T21:53:27.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-12-31T13:16:45.000Z (about 1 month ago)
- Last Synced: 2025-01-21T15:07:03.276Z (13 days ago)
- Topics: coff, pe, portable-executable, windows
- Language: C++
- Homepage:
- Size: 194 KB
- Stars: 267
- Watchers: 9
- Forks: 44
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# linux-pe
*linux-pe* is a header only library aiming to simplify the parsing of Portable Executable (PE) and Common Object File Format (COFF) formats used to describe all things executable in 32-bit and 64-bit versions of Windows operating system with no dependencies on the Windows headers.
# Supported Compilers
linux-pe uses C++20 features, so make sure to include `-std=c++20` or equivalent in your compiler options. g++10 & clang++-10 and higher should be able to compile without any issues but the tested compilers known to be working are are:- g++12
- clang++-14
- MSVC VS 2022