Skip to content

Commit

Permalink
fix compile error on 32bit vm
Browse files Browse the repository at this point in the history
  • Loading branch information
lxsang committed Oct 12, 2018
1 parent 686c539 commit 4b4397c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PTerm-Core/LibPTerm.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ LibPTerm class >> compile [
Transcript show: 'Building: ', cmd; cr.
st := LibC system: cmd.
st = 0 ifFalse: [ ^self error:'LibC Cannot create object file' ].
cmd := 'gcc -shared -o libpterm.flib libpterm.o'.
cmd := 'gcc -shared ', arch, ' -o libpterm.flib libpterm.o'.
Transcript show: 'Building: ', cmd; cr.
st := LibC system: cmd.
st = 0 ifFalse: [ ^self error:'LibC Cannot create shared file' ].
Expand Down

0 comments on commit 4b4397c

Please sign in to comment.