Package Details: openwatcom-v2 2.0_2024_03_01-1

Git Clone URL: https://aur.archlinux.org/openwatcom-v2.git (read-only, click to copy)
Package Base: openwatcom-v2
Description: The Open Watcom Fortran/C/C++ compiler, binary distribution -V2 fork
Upstream URL: https://github.com/open-watcom
Keywords: compiler cross
Licenses: custom:OWPL-1
Submitter: WFCody
Maintainer: DarkShadow44
Last Packager: DarkShadow44
Votes: 8
Popularity: 0.22
First Submitted: 2015-08-19 14:48 (UTC)
Last Updated: 2024-03-19 18:07 (UTC)

Latest Comments

« First ‹ Previous 1 2

DarkShadow44 commented on 2020-03-15 14:37 (UTC)

@AndrevS Fixed the script. Not sure how that ever worked though, I didn't change it before.

AndrevS commented on 2020-03-15 09:48 (UTC)

Now it gives

/opt/watcom/owsetenv.sh: line 3: export: `=': not a valid identifier
/opt/watcom/owsetenv.sh: line 3: export: `/opt/watcom': not a valid identifier
/opt/watcom/owsetenv.sh: line 4: export: `=': not a valid identifier
/opt/watcom/owsetenv.sh: line 4: export: `/binl64:/binl:/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl': not a valid identifier
/opt/watcom/owsetenv.sh: line 5: export: `=': not a valid identifier
/opt/watcom/owsetenv.sh: line 5: export: `/eddat': not a valid identifier
/opt/watcom/owsetenv.sh: line 9: export: `=': not a valid identifier
/opt/watcom/owsetenv.sh: line 9: export: `/lh': not a valid identifier

There should be no space between the variable name and the =

DarkShadow44 commented on 2020-03-06 17:16 (UTC)

Thanks for reporting, I pushed an update.

AndrevS commented on 2020-03-06 16:49 (UTC) (edited on 2020-03-15 09:48 (UTC) by AndrevS)

The owsetenv.sh is a broken symlink.

[andre@8570w test]$ file /opt/watcom/owsetenv.sh
/opt/watcom/owsetenv.sh: broken symbolic link to /tmp/yaourt-tmp-andre/aur-openwatcom-v2/owsetenv.sh

DarkShadow44 commented on 2020-03-02 18:48 (UTC)

Updated to the new download. Tell me if there's any issues.

WFCody commented on 2015-12-10 03:50 (UTC)

Thanks! I have updated the PKGBUILD. Have fun :)

ackalker commented on 2015-12-07 23:19 (UTC)

I've reported the problem "upstream": https://github.com/open-watcom/open-watcom-v2/issues/216

ackalker commented on 2015-12-07 22:23 (UTC)

I was getting the following error trying to build this package: $ makepkg [...] /home/miki/pkg/aur/openwatcom-v2/PKGBUILD: line 27: 13107 Segmentation fault " ==> ERROR: A failure occurred in package(). Aborting... With some digigng and a bit of luck, I found that this appears to be related to open-watcom-2_0-c-linux-x86 installer not liking my terminal setting (who woulda thunk that!): $ echo $TERM rxvt-unicode-256color $ TERM=linux makepkg [...package builds w/o problems...] Please consider making the following small change to the PKGBUILD: --- PKGBUILD.original 2015-08-19 16:52:38.000000000 +0200 +++ PKGBUILD 2015-12-07 23:22:33.634814594 +0100 @@ -60,8 +60,8 @@ 3s=true # Stack calling convention libraries cplusplus=true # C++ support EOF - ./open-watcom-2_0-f77-linux-x86 -i -dDstDir="$pkgdir/opt/watcom" -dOWDir="/opt/watcom" -f="$_tmpnam" - ./open-watcom-2_0-c-linux-x86 -i -dDstDir="$pkgdir/opt/watcom" -dOWDir="/opt/watcom" -f="$_tmpnam" + TERM=linux ./open-watcom-2_0-f77-linux-x86 -i -dDstDir="$pkgdir/opt/watcom" -dOWDir="/opt/watcom" -f="$_tmpnam" + TERM=linux ./open-watcom-2_0-c-linux-x86 -i -dDstDir="$pkgdir/opt/watcom" -dOWDir="/opt/watcom" -f="$_tmpnam" install -d "$pkgdir/usr/share/licenses/watcom" install -Dm644 "$pkgdir/opt/watcom/license.txt" "$pkgdir/usr/share/licenses/watcom/license.txt" _pkgdirsane="$(echo "$pkgdir" | sed -e 's,[\[^$.+*\\?],\\&,g')"