Search Criteria
Package Details: openwatcom-v2 2.0-7
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: | |
Submitter: | WFCody |
Maintainer: | DarkShadow44 |
Last Packager: | DarkShadow44 |
Votes: | 5 |
Popularity: | 0.001446 |
First Submitted: | 2015-08-19 14:48 |
Last Updated: | 2020-03-15 14:36 |
Dependencies (0)
Required by (26)
- ow-curses-win32a
- ow-curses-win32a (make)
- ow-libbz2
- ow-libbz2 (make)
- ow-libbz2-dos
- ow-libbz2-dos (make)
- ow-libbz2-netware
- ow-libbz2-netware (make)
- ow-libbz2-os2
- ow-libbz2-os2 (make)
- ow-libbz2-win16 (make)
- ow-libbz2-win16
- ow-libbz2-win32 (make)
- ow-libbz2-win32
- ow-zlib
- ow-zlib (make)
- ow-zlib-dos
- ow-zlib-dos (make)
- ow-zlib-netware
- ow-zlib-netware (make)
- ow-zlib-os2
- ow-zlib-os2 (make)
- ow-zlib-win16 (make)
- ow-zlib-win16
- ow-zlib-win32
- ow-zlib-win32 (make)
Latest Comments
DarkShadow44 commented on 2020-03-15 14:37
@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
Now it gives
There should be no space between the variable name and the =
DarkShadow44 commented on 2020-03-06 17:16
Thanks for reporting, I pushed an update.
AndrevS commented on 2020-03-06 16:49
The owsetenv.sh is a broken symlink.
DarkShadow44 commented on 2020-03-02 18:48
Updated to the new download. Tell me if there's any issues.
WFCody commented on 2015-12-10 03:50
Thanks! I have updated the PKGBUILD. Have fun :)
ackalker commented on 2015-12-07 23:19
I've reported the problem "upstream": https://github.com/open-watcom/open-watcom-v2/issues/216
ackalker commented on 2015-12-07 22:23
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')"