Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

compiling VAL #13

Closed
lispm opened this issue Apr 10, 2019 · 3 comments
Closed

compiling VAL #13

lispm opened this issue Apr 10, 2019 · 3 comments

Comments

@lispm
Copy link

lispm commented Apr 10, 2019

I could compile the VAL in the jenkins directory on an Ubuntu 18.04 ARM64 machine.

I had to change the Makefile :

%.cpp : %.yacc
	${LEX} -+ src/Parser/pddl+.lex -o /src/Parser/lex.yy.cc; ${YACC} $< -o src/pddl+.cpp

to

%.cpp : %.yacc
	${LEX} -+ -o src/Parser/lex.yy.cc src/Parser/pddl+.lex; ${YACC} $< -o src/pddl+.cpp

@rpgoldman
Copy link
Contributor

Thanks. I need to get the source here replaced by a git submodule from a maintained copy of VAL. See issue #6

@lispm
Copy link
Author

lispm commented Apr 11, 2019

I was able to use VAL in the current provided form from the jenkis directory for executing the test suite. Is that okay?

@rpgoldman
Copy link
Contributor

@lispm Yes, that should be fine. Note that I fixed things up in the .travis.yml configuration.

I am going to close this and defer further discussion to #6

The biggest challenge for finding a remote for VAL is that we need one that will support the -x flag we use. This flag makes VAL set the output status based on whether the validation is successful or not.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants