An open API service indexing awesome lists of open source software.

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

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
```