So , I got the interpreter working but just letting you know about this bug.
my software specs:
OS: Arch Linux
KDE Plasma Version: 5.10.5
KDE Frameworks Version: 5.37.0
Qt Version: 5.9.1
Kernel Version: 4.12.8-2-ARCH
OS Type: 64-bit
------------------------------------------------------------
COMPILER
------------------------------------------------------------
gcc (GCC) 7.1.1 20170630
Copyright (C) 2017 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
--------------
LIBEDIT
--------------
libedit 20170329_3.1-1 [installed]
#ifdef BRAINFUCK_EDITLINE_LIB
#include <editline/readline.h>
/*
* This line caused the compile error , even if it is not mac
* I think , We don't need to include editline/history.h when
* We already included editline/readline.h
#ifndef __APPLE__
#include <editline/history.h>
#endif
*/
#endif
So , I got the interpreter working but just letting you know about this bug.
my software specs:
When I compiled it shot with a include error ,
So what I did was comment this line in src/main.c
After editing this , I compiled successfully!
is this intensional?...... just reporting!