Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adrianherrera/simple-bmp
A simple BMP parser for experimenting with S2E
https://github.com/adrianherrera/simple-bmp
Last synced: 11 days ago
JSON representation
A simple BMP parser for experimenting with S2E
- Host: GitHub
- URL: https://github.com/adrianherrera/simple-bmp
- Owner: adrianherrera
- Created: 2017-08-22T05:55:14.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-10-24T02:22:22.000Z (about 7 years ago)
- Last Synced: 2024-11-08T11:53:19.381Z (2 months ago)
- Language: C
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
To cross-compile glibc for i386:
```console
mkdir -p glibc/src glibc/build
git clone git://sourceware.org/git/glibc.git glibc/srccd glibc/build
../src/configure --prefix=`pwd`/install \
--host=i686-linux-gnu --build=i686-linux-gnu \
CC="gcc -m32" CXX="g++ -m32" \
CFLAGS="-g -O2 -march=i686" CXXFLAGS="-g -O2 -march=i686" \
LDFLAGS="-g -O2"
make
make install
```To build `simple_bmp`:
```console
GLIBCDIR=/path/to/glibc/build/install S2EDIR=/path/to/s2e/env make
```