diff options
author | john haque <j.eh@mchsi.com> | 2012-05-02 08:05:43 -0500 |
---|---|---|
committer | john haque <j.eh@mchsi.com> | 2012-05-02 08:05:43 -0500 |
commit | 3a8c139d1a28651bf222b05cb0895bf5066bb9f9 (patch) | |
tree | cbe9b6c918bef7439f6c321925c30066e6103771 /extension/steps | |
parent | 50c2afd6433f1c4407b04d2f75e536da7c94fe74 (diff) | |
download | egawk-3a8c139d1a28651bf222b05cb0895bf5066bb9f9.tar.gz egawk-3a8c139d1a28651bf222b05cb0895bf5066bb9f9.tar.bz2 egawk-3a8c139d1a28651bf222b05cb0895bf5066bb9f9.zip |
Fix memory corruption in copying an array, add another array extension.
Diffstat (limited to 'extension/steps')
-rwxr-xr-x | extension/steps | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/extension/steps b/extension/steps index 0cd0042a..1abab9d2 100755 --- a/extension/steps +++ b/extension/steps @@ -15,6 +15,7 @@ gcc -fPIC -shared -Wall -DHAVE_CONFIG_H -c -O -g -I.. testarg.c gcc -fPIC -shared -Wall -DHAVE_CONFIG_H -c -O -g -I.. rwarray.c gcc -fPIC -shared -Wall -DHAVE_CONFIG_H -c -O -g -I.. spec_array.c gcc -fPIC -shared -Wall -DHAVE_CONFIG_H -c -O -g -I.. sparr.c +gcc -fPIC -shared -Wall -DHAVE_CONFIG_H -c -O -g -I.. bindarr.c ld -o dl.so -shared dl.o ld -o filefuncs.so -shared filefuncs.o ld -o fork.so -shared fork.o @@ -24,3 +25,4 @@ ld -o readfile.so -shared readfile.o ld -o testarg.so -shared testarg.o ld -o rwarray.so -shared rwarray.o ld -o sparr.so -shared sparr.o spec_array.o +ld -o bindarr.so -shared bindarr.o |