Package Details: squirrel 3.2-1

Git Clone URL: https://aur.archlinux.org/squirrel.git (read-only, click to copy)
Package Base: squirrel
Description: A light-weight scripting language that fits in the size, memory bandwidth, and real-time requirements of applications like video games
Upstream URL: http://www.squirrel-lang.org/
Licenses: MIT
Submitter: None
Maintainer: Biswa96
Last Packager: Biswa96
Votes: 11
Popularity: 0.002025
First Submitted: 2010-12-13 11:20 (UTC)
Last Updated: 2023-06-21 15:34 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 Next › Last »

<deleted-account> commented on 2012-04-28 16:01 (UTC)

Package updated Changes: * Created a patch that modifies Makefiles adding -fPIC and -fpermissive. Now seems it compiles fine. Squirrel Author has been notified about this problems with Gcc 4.7.x. I'm still waiting his response.

<deleted-account> commented on 2012-04-28 14:35 (UTC)

This issue was reported to upstream and I'm waiting some response. Meanwhile, i'll update the package with a patch to fix this.

losinggeneration commented on 2012-04-28 06:10 (UTC)

FWIW, in SQUIRREL3/squirrel/Makefile adding -fpermissive to DEFS= allows it to successfully compile. Really though, upstream should be told to fix their code.

<deleted-account> commented on 2012-04-25 04:25 (UTC)

Ok. Old versions of Gcc can compile Squirrel without issues. With Gcc < 4.7.... looks like it works fine(tested g++ 4.4.5 and g++ 4.5.1-4 in 32 and 64 bits). Maybe the author of squirrel could say something about this. I will try to contact with him.

<deleted-account> commented on 2012-04-25 03:33 (UTC)

Hi. I think it may be related to the latest version of gcc. Before the last update, squirrel compiled and worked fine. I need to do more tests :-/

<deleted-account> commented on 2012-04-24 20:21 (UTC)

Any ideas what might be causing this? http://codepad.org/0aLyQZcf

<deleted-account> commented on 2011-12-04 11:57 (UTC)

Package updated with new version.

<deleted-account> commented on 2011-09-09 08:00 (UTC)

Package updated.

<deleted-account> commented on 2011-07-05 13:11 (UTC)

Package updated. Thanks for all corrections. Changes: * Created and added patch-0.1.diff for patching src/SQUIRREL3/squirrel/Makefile adding -fPIC param. * Using $CARCH and '==' instead of '='(Sorry, I'm stupid) in PKGBUILD.

<deleted-account> commented on 2011-07-04 22:17 (UTC)

The condition on line 16 of the PKGBUILD is always true. if [ $(uname -m)='x86_64' ]; then should be if test "$CARCH" == x86_64; then