https://github.com/sbcd90/my-gcc-plugin
a simple GCC Gimple plugin
https://github.com/sbcd90/my-gcc-plugin
Last synced: 2 days ago
JSON representation
a simple GCC Gimple plugin
- Host: GitHub
- URL: https://github.com/sbcd90/my-gcc-plugin
- Owner: sbcd90
- Created: 2021-09-30T01:12:18.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-09-30T01:13:00.000Z (over 4 years ago)
- Last Synced: 2025-02-26T06:31:48.867Z (over 1 year ago)
- Language: C++
- Size: 3.91 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
my-gcc-plugin
=============
This is a simple GCC Gimple plugin fun project.
It throws warnings when a function return value is unused.
Build
=====
```
mkdir Debug
cd Debug
cmake ..
make
```
Run
===
```
g++ -c -fplugin=./my_gcc_plugin.so -c src/examples/test-warn.cpp
```