일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- custom packer
- android inject
- LLVM
- v8 optimizing
- v8 tracing
- OSR
- anti debugging
- pinpoint
- 안티디버깅
- Obfuscator
- Android
- thread local storage
- tracing
- pthread
- LLVM 난독화
- so inject
- Linux packer
- linux thread
- Injection
- Linux custom packer
- linux debugging
- 난독화
- LLVM Obfuscator
- apm
- on-stack replacement
- TLS
- tracerpid
- initial-exec
- uftrace
- on stack replacement
Archives
- Today
- Total
Why should I know this?
GCC compile 본문
GCC 컴파일 관련 정리.
소스코드 다운 : (mirror - locate at japan)
wget http://ftp.tsukuba.wide.ad.jp/software/gcc/releases/gcc-7.3.0/gcc-7.3.0.tar.gz
의존성 라이브러리 설치 :
./contrib/download_prerequisites
빌드 환경 설치 :
sudo apt install build-essential
configure :
gcc source가 있는 곳에서 ./configure 하지 말 것을 권하므로, 한 단계 올라간다.
cd..
mkdir buildcd build
../gcc-7.3.0/configure
make -j6
custom option:
configure할 때 CFLAGS 와 CXXFLAGS 지정.
../gcc-7.3.0/configure CFALGS='-g -gdwarf -fno-inline' CXXFLAGS='-g -gdwarf -fno-inline'
'Knowledge > Compiler' 카테고리의 다른 글
ART-Compiler] LoopOptimizing #1 (0) | 2022.12.05 |
---|---|
LLVM Obfuscator] Control Flow Graph Flattening (0) | 2021.02.15 |
LLVM Obfuscator] Call (0) | 2021.02.13 |
LLVM - Why should we know this? (0) | 2020.07.19 |
gcc 사용 중에 버그를 발견했을때 report 하는 방법. (0) | 2018.04.09 |
Comments