-
Notifications
You must be signed in to change notification settings - Fork 3
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
configure: error: jam version is too old. Download a newer version from our repository #7
Comments
an then i get this when i try to do jam Segmentation fault (core dumped) |
Which jam you are using? Have you managed to compile it and install? |
Also, OS/CPU/platform details would be helpul :) |
OS : Arch Linux x86_64 |
What you get when you type: |
Jam 2.5-haiku-20080327. OS=LINUX. Copyright 1993-2002 Christopher Seiwald. |
Hm... something is not right here. I have the same version and it is
parsing it without problems.
Try creating "configtest.jam" file with the following content (watch for
space before semicolon):
```
Echo $(JAMVERSION) ;
```
then run:
```
jam -f configtest.jam | head -1 | sed -e 's/\.//g'
```
It should write "25". Even better, create a shell script "demo.sh" with this
content:
```
#!/bin/sh
jam_version=$(jam -f configtest.jam | head -1 | sed -e 's/\.//g')
if test "$jam_version" -ge 23; then
echo "OK"
else
echo "Not OK"
if
```
and run:
```
chmod +x demo.sh
./demo.sh
```
What is the output? If you happen to run Ubuntu, try running after this:
```
/usr/bin/bash demo.sh
```
|
i already downloaded the repository version of jam an i still get that message
The text was updated successfully, but these errors were encountered: