Commit f186036b authored by Nils Goroll's avatar Nils Goroll

cheat sheet for cpp commands to regression-review macro changes - automate?

parent cdb63038
#
# note on comparing outputs after changing macro structure: compare CPP outputs before/after
#
# gcc -E -I. -I.. -Isrc/include -D_REENTRANT src/longpath.c >src/longpath.i
# gcc -m64 -E -I. -I.. -Isrc/include -D_REENTRANT src/longpath.c >src/longpath_64.i
# gcc -DUSE_CHDIR_FALLBACK -E -I. -I.. -Isrc/include -D_REENTRANT src/longpath.c >src/longpath_chdir.i
# gcc -m64 -DUSE_CHDIR_FALLBACK -E -I. -I.. -Isrc/include -D_REENTRANT src/longpath.c >src/longpath_chdir_64.i
#
#
SUBDIRS = include
AM_CPPFLAGS = -Iinclude
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment