Re: BOOST_STATIC_ASSERT ?
Larry Evans <[email protected]>
| Newsgroups | gmane.comp.parsers.spirit.general |
|---|---|
| Message-ID | <[email protected]> |
On 08/24/2016 05:37 PM, Larry Evans wrote: > On 08/24/2016 04:44 PM, Jens Kallup wrote: >> Hello Larry, >> >> it works for me, now. > It doesn't for me. I'm still getting same error > about QString and other Q* symbols. > >> But is it a Bug? >> I can't parse: "val = 2 - - - 2" as invalid >> > Can't say as I can't even compile the program :( > > -regards, > Larry Also, instead of: https://github.com/paule32/dBase4Linux/blob/master/source/parser/dbase/make use a real makefile, such as that in the attached. That way, somebody can actually use make, and specify separate compiler, as I did, with the command line: make COMPILER==/home/evansl/dwnlds/gcc/5.2.0/install/bin/g++ ------------------------------------------------------------------------------ _______________________________________________ Spirit-general mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/spirit-general
makefile
(text/plain, 648 B)
COMPILER ?= g++ #COMPILER = the c++ compiler to use. # or, on command line, supply the value: # make COMPILER=g++ ########################################### yymaincc: $(COMPILER) -c \ -Wno-unused-parameter \ -Wno-unused-variable \ -Wno-unused-local-typedefs \ -Wno-unused-but-set-variable \ -Wno-write-strings \ -Wno-extra \ -Wno-reorder \ -Wunused-function \ -Woverloaded-virtual \ -fpermissive \ -ftemplate-depth=200 -frtti -fexceptions -std=c++17 \ -D__BYTE_ORDER=__LITTLE_ENDIAN -D_REENTRANT -fPIC \ -DBUILDTIME=\"14:43:09\" -DBUILDDATE=\"2016-08-22\" \ -I. \ -I/usr/include \ \ -o yymain.o yymain.cc show: @echo "COMPILER=$(COMPILER)"