-
Notifications
You must be signed in to change notification settings - Fork 138
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
Installation issues #13
Comments
Thank you for your reporting. About the For the About the The last one is easy to answer. You should use |
Thanks a lot for the quick answer. That clears things up for me. I leave it to you, when you want to close the issue. |
"unused-result" warning for calling ftruncate() in Utruncate(). (#13) NOTE: TruncateFile() is not called from anywhere. "maybe-uninitialized" warning in PreRandom() on ParFORM.
Remove the code that was used for determining the OS, because newer rubies warn the usage of deprecated Config. The information of the OS is actually not used anywhere. Fix the result for examples.rb:Sec_3_44_2. Now #write "%e" doesn't output an extra blank line. (It was changed by 44cf65f.) NOTE: For automake >= 1.13, "serial-tests" option has to be added in AM_INIT_AUTOMAKE in configure.ac: AM_INIT_AUTOMAKE([foreign 1.7 dist-bzip2 serial-tests]) otherwise "make check" causes errors (#13), while adding "serial-tests" causes an error at running automake < 1.12.
I found the In automake >= 1.13, the default behaviour of the test suite was changed in an incompatible way (a parallel test harness). I prefer a serial test harness (because of its output behaviour and there is only one test program form.rb to be executed, i.e., a parallel test harness doesn't lead any parallelization in our test suite), so a simple workaround is adding To use An alternative way is check As a consequence, a workaround for now is adding
(By the way, my commit 3d69423 is a fix of |
It resolves the "make check" issue of #13 in most cases.
A new script gendate.sh is introduced for generating date strings for C and LaTeX, production-date.h, manualdate.tex and devrefdate.tex. It also resolves the "date -d (invalid date)" issue of #13.
All the problems here were resolved at least for typical environments, so I close the issue. |
Hi,
I have cloned the git repo and am compiling with
gcc (Ubuntu 4.8.2-19ubuntu1)
. During compilation, I get one warningProbably unrelated, when I try to
make check
, I getTrying to make
manual.pdf
, I stumpled upon a problem withmanualdate.tex
. With my locale I get22 Mai 2014
withdate +"%d %b %Y"
which is not accepted by date -d ('invalid date'). A quick fix that allowed me to build the manual was to usedate -I
(ISO format) instead ofdate +"%d %b %Y"
in theMakefile.am
. Maybe you want to use this.When I try a trivial example, it seems to run fine, except I get
This might be connected to the failed
make check
? I could only trace this problem toFG.cTable
but I don't know how to fix it. I have plenty of space for windows so a linesize of 39 looks quite annoying.The text was updated successfully, but these errors were encountered: