2016-09-17 3 views
5

système Je suis sur:Erreur de segmentation jonesforth

/tmp/jonesforth $ cat /etc/issue 
Ubuntu 16.04.1 LTS \n \l 

Ce système 32 bits.

Clone du référentiel annexia:

git clone git://git.annexia.org/git/jonesforth.git 

La construction va OK:

cd jonesforth 

/tmp/jonesforth $ make 
gcc -m32 -nostdlib -static -Wl,-Ttext,0 -o jonesforth jonesforth.S 

Les tests ne cependant passent pas:

/tmp/jonesforth $ make test 
test_stack_trace.f ... --- .test_stack_trace.test 2016-09-17 17:44:59.488492834 -0500 
+++ test_stack_trace.f.out 2016-09-17 17:33:11.171189490 -0500 
@@ -0,0 +1,6 @@ 
+TEST4+0 TEST3+0 TEST2+0 TEST+0 
+3 
+TEST4+0 TEST3+32 TEST2+0 TEST+0 
+TEST4+0 TEST3+0 TEST2+4 TEST+0 
+3 
+TEST4+0 TEST3+32 TEST2+4 TEST+0 
Makefile:34: recipe for target 'test_stack_trace.test' failed 
make: *** [test_stack_trace.test] Error 1 

Démarrage jonesforth conduit à une segmentation défaut:

/tmp/jonesforth $ cat jonesforth.f - | ./jonesforth 
Segmentation fault 

Répondre

6

Suppression -Wl,-Ttext,0 de l'entrée Makefile pour jonesforth:

jonesforth: jonesforth.S 
    gcc -m32 -nostdlib -static $(BUILD_ID_NONE) -o [email protected] $< 

semble aider. La construction réussit:

/tmp/jonesforth $ touch jonesforth.S 
/tmp/jonesforth $ make 
gcc -m32 -nostdlib -static -o jonesforth jonesforth.S 

Les tests passent:

/tmp/jonesforth $ make test 
test_stack_trace.f ... ok 
test_stack.f ... ok 
test_comparison.f ... ok 
test_assembler.f ... ok 
test_exception.f ... ok 
test_read_file.f ... ok 
test_number.f ... ok 

Et il démarre:

/tmp/jonesforth $ cat jonesforth.f - | ./jonesforth 
JONESFORTH VERSION 47 
14499 CELLS REMAINING 
OK 
+0

Merci beaucoup pour ce détachement. Je me cognais la tête contre le bureau pendant plusieurs heures. –