Open rchoudhary opened 5 years ago
To get this program to build on Mac OS 10.13 (High Sierra) I needed to do the following steps:
argp-standalone
brew install argp-standalone
-I/usr/local/include/
CFLAGS
-largp
LDFLAGS
#include <limits.h>
argparser.c
I believe that Step 1 should be mentioned in the README, and that Steps 2 and 3 should be changed in the Makefile and argparser.c respectively.
I agree. If you could submit a PR I will review it. Those steps aren't necessary on Linux, so I will make sure this still builds on Linux before merging.
To get this program to build on Mac OS 10.13 (High Sierra) I needed to do the following steps:
argp-standalone
using Homebrew like so:brew install argp-standalone
-I/usr/local/include/
toCFLAGS
and-largp
toLDFLAGS
in the Makefile#include <limits.h>
to the top ofargparser.c
I believe that Step 1 should be mentioned in the README, and that Steps 2 and 3 should be changed in the Makefile and
argparser.c
respectively.