Skip to content

Instantly share code, notes, and snippets.

@mlabbe
Created April 29, 2016 17:14
Show Gist options
  • Select an option

  • Save mlabbe/47a78915ae42bc87fa32f4bba6a97b88 to your computer and use it in GitHub Desktop.

Select an option

Save mlabbe/47a78915ae42bc87fa32f4bba6a97b88 to your computer and use it in GitHub Desktop.
Dump all compiler defines
CC=/usr/bin/gcc
if [[ $# -gt 0 ]]
then
CC=$1
fi
touch ___temp.c
$CC -dM -E ___temp.c
rm ___temp.c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment