You are not logged in.
libffi.so.6
/preforth -p ".:~+:." -e 's" mach16b.fs"' ./kernel/main.fs -e "save-cross kernl16b.fi- /usr/local/bin/gforth-0.7.3 bye"
./gforth: error while loading shared libraries: libffi.so.6: cannot open shared object file: No such file or directory
make: *** [Makefile:716: kernl16b.fi-] Error 127
Last edited by nationalismendtrade (2021-05-06 14:07:34)
Offline
Are you using gforth from the AUR? When was the last time you rebuilt it?
Offline
"UNIX is simple and coherent" - Dennis Ritchie; "GNU's Not Unix" - Richard Stallman
Offline
Are you using gforth from the AUR? When was the last time you rebuilt it?
oh no I was compiling from gforth site....
let me look at AUR
Offline
$ makepkg -si
: Processing package changes...
(1/1) installing gforth [###########################################] 100%
:: Running post-transaction hooks...
(1/2) Arming ConditionNeedsUpdate...
(2/2) Updating the info directory file...
[g]$ gforth
gforth: error while loading shared libraries: libffi.so.6: cannot open shared object file: No such file or directory
Last edited by nationalismendtrade (2020-04-21 15:21:03)
Offline
Same error after installing with AUR as when I tried to compile:
make[1]: Leaving directory '/root/gforth-0.7.3/engine'
cp -p engine/gforth-itc-noll gforth-itc
true
./preforth -p ".:~+:." -e 's" mach16b.fs"' ./kernel/main.fs -e "save-cross kernl16b.fi- /usr/local/bin/gforth-0.7.3 bye"
./gforth: error while loading shared libraries: libffi.so.6: cannot open shared object file: No such file or directory
make: *** [Makefile:716: kernl16b.fi-] Error 127
Offline
Do a clean build. The first looks like you just reinstalled the package, didn't build at all, and the second looks like it's skipping the build since it's already built.
Why in the world are you building in the /root dir?
Offline
Mod note: moving to AUR issues.
Sakura:-
Mobo: MSI MAG X570S TORPEDO MAX // Processor: AMD Ryzen 9 5950X @4.9GHz // GFX: AMD Radeon RX 5700 XT // RAM: 32GB (4x 8GB) Corsair DDR4 (@ 3000MHz) // Storage: 1x 3TB HDD, 6x 1TB SSD, 2x 120GB SSD, 1x 275GB M2 SSD
Making lemonade from lemons since 2015.
Offline
Updated PKGBUILD
# Maintainer: Kyle Keen <keenerd@gmail.com>
# Contributor: Stefan Husmann <stefan-husmann@t-online.de>
# Contributor: Jason Chu <jason@archlinux.org>
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
pkgname=gforth
pkgver=0.7.3
pkgrel=1
pkgdesc="Fast and portable implementation of the ANS Forth language"
arch=('i686' 'x86_64' 'armv6h')
url="https://www.gnu.org/software/gforth/"
license=('GPL3')
depends=('libtool' 'texinfo' 'libffi')
options=(!makeflags libtool)
source=(https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz{,.sig})
md5sums=('ff484391e5cdf405867fcf96341820ab'
'SKIP')
validpgpkeys=('E50D62D449FD0E193706C2358B820BB767007C30') #Bernd Paysan <bernd@net2o.de>
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
}git diff
diff --git a/PKGBUILD b/PKGBUILD
index 4b68b4a..a9bbeca 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,25 +6,25 @@
pkgname=gforth
pkgver=0.7.3
pkgrel=1
-url="http://www.gnu.org/software/gforth/"
pkgdesc="Fast and portable implementation of the ANS Forth language"
arch=('i686' 'x86_64' 'armv6h')
+url="https://www.gnu.org/software/gforth/"
license=('GPL3')
-depends=('libtool')
-source=("http://www.complang.tuwien.ac.at/forth/$pkgname/$pkgname-$pkgver.tar.gz")
-options=('libtool')
-install=$pkgname.install
-md5sums=('96f2354ec8c4005e1a54035586ed683e')
-md5sums=('ff484391e5cdf405867fcf96341820ab')
+depends=('libtool' 'texinfo' 'libffi')
+options=(!makeflags libtool)
+source=(https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz{,.sig})
+md5sums=('ff484391e5cdf405867fcf96341820ab'
+ 'SKIP')
+validpgpkeys=('E50D62D449FD0E193706C2358B820BB767007C30') #Bernd Paysan <bernd@net2o.de>
build() {
- cd "$srcdir/$pkgname-$pkgver"
- CFLAGS='-std=gnu99' ./configure --prefix=/usr
- make PREFIX=/usr -j1
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr
+ make
}
package() {
- cd "$srcdir/$pkgname-$pkgver"
- make PREFIX=/usr DESTDIR="$pkgdir" install
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
}
diff --git a/gforth.install b/gforth.install
deleted file mode 100644
index 6dd8944..0000000
--- a/gforth.install
+++ /dev/null
@@ -1,18 +0,0 @@
-infodir=/usr/share/info
-filelist=(gforth.info vmgen.info)
-
-post_install() {
- for file in ${filelist[@]}; do
- install-info $infodir/$file $infodir/dir 2> /dev/null
- done
-}
-
-post_upgrade() {
- post_install $1
-}
-
-pre_remove() {
- for file in ${filelist[@]}; do
- install-info --delete $infodir/$file $infodir/dir 2> /dev/null
- done
-}Offline
Updated PKGBUILD
# Maintainer: Kyle Keen <keenerd@gmail.com> # Contributor: Stefan Husmann <stefan-husmann@t-online.de> # Contributor: Jason Chu <jason@archlinux.org> # Contributor: Tom Newsom <Jeepster@gmx.co.uk> pkgname=gforth pkgver=0.7.3 pkgrel=1 pkgdesc="Fast and portable implementation of the ANS Forth language" arch=('i686' 'x86_64' 'armv6h') url="https://www.gnu.org/software/gforth/" license=('GPL3') depends=('libtool' 'texinfo' 'libffi') options=(!makeflags libtool) source=(https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz{,.sig}) md5sums=('ff484391e5cdf405867fcf96341820ab' 'SKIP') validpgpkeys=('E50D62D449FD0E193706C2358B820BB767007C30') #Bernd Paysan <bernd@net2o.de> build() { cd $pkgname-$pkgver ./configure --prefix=/usr make } package() { cd $pkgname-$pkgver make DESTDIR="$pkgdir" install }git diff
diff --git a/PKGBUILD b/PKGBUILD index 4b68b4a..a9bbeca 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -6,25 +6,25 @@ pkgname=gforth pkgver=0.7.3 pkgrel=1 -url="http://www.gnu.org/software/gforth/" pkgdesc="Fast and portable implementation of the ANS Forth language" arch=('i686' 'x86_64' 'armv6h') +url="https://www.gnu.org/software/gforth/" license=('GPL3') -depends=('libtool') -source=("http://www.complang.tuwien.ac.at/forth/$pkgname/$pkgname-$pkgver.tar.gz") -options=('libtool') -install=$pkgname.install -md5sums=('96f2354ec8c4005e1a54035586ed683e') -md5sums=('ff484391e5cdf405867fcf96341820ab') +depends=('libtool' 'texinfo' 'libffi') +options=(!makeflags libtool) +source=(https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz{,.sig}) +md5sums=('ff484391e5cdf405867fcf96341820ab' + 'SKIP') +validpgpkeys=('E50D62D449FD0E193706C2358B820BB767007C30') #Bernd Paysan <bernd@net2o.de> build() { - cd "$srcdir/$pkgname-$pkgver" - CFLAGS='-std=gnu99' ./configure --prefix=/usr - make PREFIX=/usr -j1 + cd $pkgname-$pkgver + ./configure --prefix=/usr + make } package() { - cd "$srcdir/$pkgname-$pkgver" - make PREFIX=/usr DESTDIR="$pkgdir" install + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install } diff --git a/gforth.install b/gforth.install deleted file mode 100644 index 6dd8944..0000000 --- a/gforth.install +++ /dev/null @@ -1,18 +0,0 @@ -infodir=/usr/share/info -filelist=(gforth.info vmgen.info) - -post_install() { - for file in ${filelist[@]}; do - install-info $infodir/$file $infodir/dir 2> /dev/null - done -} - -post_upgrade() { - post_install $1 -} - -pre_remove() { - for file in ${filelist[@]}; do - install-info --delete $infodir/$file $infodir/dir 2> /dev/null - done -}
[g]$ git clone https://aur.archlinux.org/gforth.git
Cloning into 'gforth'...
remote: Enumerating objects: 6, done.
remote: Counting objects: 100% (6/6), done.
remote: Compressing objects: 100% (5/5), done.
remote: Total 6 (delta 1), reused 5 (delta 1), pack-reused 0
Unpacking objects: 100% (6/6), 1.29 KiB | 440.00 KiB/s, done.
[g]$ cd gforth
[g]$ makepkg -si
==> Making package: gforth 0.7.3-1 (Tue 21 Apr 2020 07:44:56 PM EDT)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Downloading gforth-0.7.3.tar.gz...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 2464k 100 2464k 0 0 656k 0 0:00:03 0:00:03 --:--:-- 656k
==> Validating source files with md5sums...
gforth-0.7.3.tar.gz ... Passed
==> Extracting sources...
-> Extracting gforth-0.7.3.tar.gz with bsdtar
==> Starting build()...
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking whether to use two dispatches per conditional branch... 1
checking make type... GNU Make
checking whether the linker accepts -export-dynamic... yes
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
Check for arch/amd64//gforth.ld (false)
checking size of char *... 8
checking size of void *... 8
checking size of char... 1
checking size of short... 2
checking size of int... 4
checking size of long... 8
checking size of long long... 8
checking size of intptr_t... 8
checking size of int128_t... 0
checking size of uint128_t... 0
checking for a C type for cells... long
checking for a C type for wydes... short
checking for a C type for tetrabytes... int
checking for a C type for double-cells... none
checking for a C type for unsigned double-cells... none
checking for off_t... yes
checking size of off_t... 8
checking if gcc understands -fno-gcse... yes
checking if gcc understands -fno-strict-aliasing... yes
checking if gcc understands -fno-crossjumping... yes
checking if gcc understands -fno-reorder-blocks... yes
checking if gcc understands -falign-labels=1... yes
checking if gcc understands -falign-loops=1... yes
checking if gcc understands -falign-jumps=1... yes
checking how to suppress 'unused variable' warnings... __attribute__((unused))
checking how to invoke m4... m4 -s
checking for gforth... echo "You need to configure with a gforth in \$PATH to build this part" && false
checking for ./arch/amd64/asm.fs... yes
checking for ./arch/amd64/disasm.fs... yes
checking for install-info... /usr/bin/install-info
checking for chcon... chcon -t unconfined_execmem_exec_t
checking whether byte ordering is bigendian... no
checking if and how we can waste code space... no
configure: WARNING: Disabling default dynamic native code generation
checking if and how we can do comments in asm statements... "# "
checking whether ln -s works... yes
checking for a BSD-compatible install... /usr/bin/install -c
checking for texi2dvi4a2ps... no
checking for texi2dvi... texi2dvi
checking for glibtool... no
checking for libtool... libtool
checking for asin in -lm... yes
checking for lt_dlinit in -lltdl... yes
checking ffi.h usability... yes
checking ffi.h presence... yes
checking for ffi.h... yes
checking for ffi_call in -lffi... yes
checking for __builtin_avcall in -lavcall... yes
checking for working memcmp... yes
checking for memmove... yes
checking for strtoul... yes
checking for pow10... no
checking for strerror... yes
checking for strsignal... yes
checking for atanh... yes
checking for _LARGEFILE_SOURCE value needed for large files... no
checking for ftello... yes
checking for dlopen... no
checking for sys_siglist... yes
checking for getrusage... yes
checking for nanosleep... yes
checking for stack_t... yes
checking whether sys_siglist is declared... yes
checking for getopt_long... yes
checking for expm1... yes
checking for log1p... yes
checking for rint... yes
checking for ecvt... yes
checking sys/mman.h usability... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking fnmatch.h usability... yes
checking fnmatch.h presence... yes
checking for fnmatch.h... yes
checking alloca.h usability... yes
checking alloca.h presence... yes
checking for alloca.h... yes
checking wchar.h usability... yes
checking wchar.h presence... yes
checking for wchar.h... yes
checking for working POSIX fnmatch... yes
checking for mmap... yes
checking for sysconf... yes
checking for getpagesize... yes
checking for wcwidth... yes
checking for emacs... no
checking for xemacs... no
checking where .elc files should go... ${datadir}/emacs/site-lisp
configure: creating ./config.status
config.status: creating Makefile
config.status: creating Makedist
config.status: creating gforthmi
config.status: creating vmgen
config.status: creating machpc.fs
config.status: creating envos.fs
config.status: creating preforth
config.status: creating engine/Makefile
config.status: WARNING: 'engine/Makefile.in' seems to ignore the --datarootdir setting
config.status: creating engine/libcc.h
config.status: creating doc/version.texi
config.status: creating build-ec
config.status: creating engine/config.h
config.status: executing stamp-h commands
mkdir -p -- include/gforth/0.7.3
Makefile:865: warning: ignoring prerequisites on suffix rule definition
Makefile:865: warning: ignoring prerequisites on suffix rule definition
if test -r version && test x'0.7.3' = x`cat version` ; then true ; else echo 0.7.3 > version ; fi
echo ": version-string s\" 0.7.3\" ;" > kernel/version.fs
if test -z ""; then \
for i in -ll-reg -noll-reg -ll -noll; do make optgforth OPT=$i && cp -p gforth${i} gforth && break; done; \
else \
( cd engine && make gforth ) && \
cp -p engine/gforth gforth && \
chcon -t unconfined_execmem_exec_t gforth; \
true; \
make checkone check-nofast ENGINE=./engine/gforth; \
fi
make[1]: Entering directory '/home/g/gforth/gforth/src/gforth-0.7.3'
Makefile:865: warning: ignoring prerequisites on suffix rule definition
Makefile:865: warning: ignoring prerequisites on suffix rule definition
make gforth-ll-reg OPT=-ll-reg OPTDEFINES="-DFORCE_LL -DFORCE_REG" OPTOBJECTS=
make[2]: Entering directory '/home/g/gforth/gforth/src/gforth-0.7.3'
Makefile:865: warning: ignoring prerequisites on suffix rule definition
Makefile:865: warning: ignoring prerequisites on suffix rule definition
if test -z "-ll-reg"; then \
for i in -ll-reg -noll-reg -ll -noll; do make optgforth OPT=$i && cp -p gforth${i} gforth-ll-reg && break; done; \
else \
( cd engine && make gforth-ll-reg ) && \
cp -p engine/gforth-ll-reg gforth-ll-reg && \
chcon -t unconfined_execmem_exec_t gforth-ll-reg; \
true; \
make checkone check-nofast ENGINE=./engine/gforth-ll-reg; \
fi
make[3]: Entering directory '/home/g/gforth/gforth/src/gforth-0.7.3/engine'
cd .. && CONFIG_FILES=stamp-h CONFIG_HEADERS=engine/config.h ./config.status
config.status: creating stamp-h
config.status: creating engine/config.h
config.status: engine/config.h is unchanged
config.status: executing stamp-h commands
echo timestamp > stamp-h
gcc -I./../arch/amd64 -I. -Wall -std=gnu99 -DHAVE_CONFIG_H -DFORCE_LL -DFORCE_REG -DDEFAULTPATH='".:/usr/lib/gforth/site-forth:/usr/share/gforth/site-forth:/usr/lib/gforth/0.7.3:/usr/share/gforth/0.7.3"' -D_FORTIFY_SOURCE=2 -fno-gcse -fno-strict-aliasing -fno-crossjumping -fno-reorder-blocks -falign-labels=1 -falign-loops=1 -falign-jumps=1 -fno-defer-pop -fcaller-saves -fno-inline -fno-reorder-blocks -DGFORTH_DEBUGGING -o engine-ll-reg.o -c ./engine.c
In file included from /usr/include/bits/libc-header-start.h:33,
from /usr/include/stdio.h:27,
from ./forth.h:23,
from ./engine.c:28:
/usr/include/features.h:397:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp]
397 | # warning _FORTIFY_SOURCE requires compiling with optimization (-O)
| ^~~~~~~
gcc -I./../arch/amd64 -I. -Wall -std=gnu99 -DHAVE_CONFIG_H -DFORCE_LL -DFORCE_REG -DDEFAULTPATH='".:/usr/lib/gforth/site-forth:/usr/share/gforth/site-forth:/usr/lib/gforth/0.7.3:/usr/share/gforth/0.7.3"' -D_FORTIFY_SOURCE=2 -fno-gcse -fno-strict-aliasing -fno-crossjumping -fno-reorder-blocks -falign-labels=1 -falign-loops=1 -falign-jumps=1 -fno-defer-pop -fcaller-saves -fno-inline -fno-reorder-blocks -DGFORTH_DEBUGGING -DENGINE=2 -o engine2-ll-reg.o -c ./engine.c
In file included from /usr/include/bits/libc-header-start.h:33,
from /usr/include/stdio.h:27,
from ./forth.h:23,
from ./engine.c:28:
/usr/include/features.h:397:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp]
397 | # warning _FORTIFY_SOURCE requires compiling with optimization (-O)
| ^~~~~~~
gcc -I./../arch/amd64 -I. -Wall -std=gnu99 -DHAVE_CONFIG_H -DFORCE_LL -DFORCE_REG -DDEFAULTPATH='".:/usr/lib/gforth/site-forth:/usr/share/gforth/site-forth:/usr/lib/gforth/0.7.3:/usr/share/gforth/0.7.3"' -D_FORTIFY_SOURCE=2 -DGFORTH_DEBUGGING -o main-ll-reg.o -c ./main.c
In file included from /usr/include/bits/libc-header-start.h:33,
from /usr/include/stdio.h:27,
from ./forth.h:23,
from ./main.c:23:
/usr/include/features.h:397:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp]
397 | # warning _FORTIFY_SOURCE requires compiling with optimization (-O)
| ^~~~~~~
./main.c:252:12: warning: duplicate ‘const’ declaration specifier [-Wduplicate-decl-specifier]
252 | const char const* const prim_names[]={
| ^~~~~
./main.c:696:2: warning: #warning You can ignore the warnings about clobbered variables in gforth_go [-Wcpp]
696 | #warning You can ignore the warnings about clobbered variables in gforth_go
| ^~~~~~~
gcc -c -I./../arch/amd64 -I. -Wall -std=gnu99 -DHAVE_CONFIG_H -DFORCE_LL -DFORCE_REG -DDEFAULTPATH='".:/usr/lib/gforth/site-forth:/usr/share/gforth/site-forth:/usr/lib/gforth/0.7.3:/usr/share/gforth/0.7.3"' -D_FORTIFY_SOURCE=2 -o io.o io.c
In file included from /usr/include/bits/libc-header-start.h:33,
from /usr/include/stdio.h:27,
from forth.h:23,
from io.c:28:
/usr/include/features.h:397:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp]
397 | # warning _FORTIFY_SOURCE requires compiling with optimization (-O)
| ^~~~~~~
io.c:58: warning: "alloca" redefined
58 | # define alloca __builtin_alloca
|
In file included from /usr/include/stdlib.h:568,
from /usr/include/libltdl/lt_system.h:35,
from /usr/include/ltdl.h:36,
from forth.h:28,
from io.c:28:
/usr/include/alloca.h:35: note: this is the location of the previous definition
35 | # define alloca(size) __builtin_alloca (size)
|
gcc -c -I./../arch/amd64 -I. -Wall -std=gnu99 -DHAVE_CONFIG_H -DFORCE_LL -DFORCE_REG -DDEFAULTPATH='".:/usr/lib/gforth/site-forth:/usr/share/gforth/site-forth:/usr/lib/gforth/0.7.3:/usr/share/gforth/0.7.3"' -D_FORTIFY_SOURCE=2 -o signals.o signals.c
In file included from /usr/include/bits/libc-header-start.h:33,
from /usr/include/stdio.h:27,
from forth.h:23,
from signals.c:24:
/usr/include/features.h:397:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp]
397 | # warning _FORTIFY_SOURCE requires compiling with optimization (-O)
| ^~~~~~~
gcc -c -I./../arch/amd64 -I. -Wall -std=gnu99 -DHAVE_CONFIG_H -DFORCE_LL -DFORCE_REG -DDEFAULTPATH='".:/usr/lib/gforth/site-forth:/usr/share/gforth/site-forth:/usr/lib/gforth/0.7.3:/usr/share/gforth/0.7.3"' -D_FORTIFY_SOURCE=2 -o support-ll-reg.o ./support.c
In file included from /usr/include/bits/libc-header-start.h:33,
from /usr/include/stdio.h:27,
from ./forth.h:23,
from ./support.c:22:
/usr/include/features.h:397:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp]
397 | # warning _FORTIFY_SOURCE requires compiling with optimization (-O)
| ^~~~~~~
gcc -c -I./../arch/amd64 -I. -Wall -std=gnu99 -DHAVE_CONFIG_H -DFORCE_LL -DFORCE_REG -DDEFAULTPATH='".:/usr/lib/gforth/site-forth:/usr/share/gforth/site-forth:/usr/lib/gforth/0.7.3:/usr/share/gforth/0.7.3"' -D_FORTIFY_SOURCE=2 -o pow10.o pow10.c
In file included from /usr/include/bits/libc-header-start.h:33,
from /usr/include/math.h:27,
from pow10.c:20:
/usr/include/features.h:397:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp]
397 | # warning _FORTIFY_SOURCE requires compiling with optimization (-O)
| ^~~~~~~
gcc -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -export-dynamic engine-ll-reg.o engine2-ll-reg.o main-ll-reg.o io.o signals.o support-ll-reg.o pow10.o -lavcall -lffi -lltdl -lm -o gforth-ll-reg
make[3]: Leaving directory '/home/g/gforth/gforth/src/gforth-0.7.3/engine'
chcon: failed to get security context of 'gforth-ll-reg': Operation not supported
make[3]: Entering directory '/home/g/gforth/gforth/src/gforth-0.7.3'
Makefile:865: warning: ignoring prerequisites on suffix rule definition
Makefile:865: warning: ignoring prerequisites on suffix rule definition
./preforth -p ".:~+:." -e 's" mach16b.fs"' ./kernel/main.fs -e "save-cross kernl16b.fi- /usr/bin/gforth-0.7.3 bye"
redefined NIL
Unresolved: Nothing!
address-space Start: 00000 End: 00000 DP: 00000
user-region Start: 01674 End: 01874 DP: 016A4
dictionary Start: 00100 End: 00100 DP: 08804
return-stack Start: 00000 End: 00000 DP: 00000
data-stack Start: 00000 End: 00000 DP: 00000
tib-region Start: 00000 End: 00000 DP: 00000 Saving to kernl16b.fi-
./preforth -p ".:~+:." -e 's" mach16l.fs"' ./kernel/main.fs -e "save-cross kernl16l.fi- /usr/bin/gforth-0.7.3 bye"
redefined NIL
Unresolved: Nothing!
address-space Start: 00000 End: 00000 DP: 00000
user-region Start: 01674 End: 01874 DP: 016A4
dictionary Start: 00100 End: 00100 DP: 08804
return-stack Start: 00000 End: 00000 DP: 00000
data-stack Start: 00000 End: 00000 DP: 00000
tib-region Start: 00000 End: 00000 DP: 00000 Saving to kernl16l.fi-
./preforth -p ".:~+:." -e 's" mach32b.fs"' ./kernel/main.fs -e "save-cross kernl32b.fi- /usr/bin/gforth-0.7.3 bye"
redefined NIL
Unresolved: Nothing!
address-space Start: 0000.0000 End: 0000.0000 DP: 0000.0000
user-region Start: 0000.1DC0 End: 0000.21C0 DP: 0000.1E20
dictionary Start: 0000.0100 End: 0080.0100 DP: 0000.DA38
return-stack Start: 0000.0000 End: 0000.0000 DP: 0000.0000
data-stack Start: 0000.0000 End: 0000.0000 DP: 0000.0000
tib-region Start: 0000.0000 End: 0000.0000 DP: 0000.0000 Saving to kernl32b.fi-
./preforth -p ".:~+:." -e 's" mach32l.fs"' ./kernel/main.fs -e "save-cross kernl32l.fi- /usr/bin/gforth-0.7.3 bye"
redefined NIL
Unresolved: Nothing!
address-space Start: 0000.0000 End: 0000.0000 DP: 0000.0000
user-region Start: 0000.1DC0 End: 0000.21C0 DP: 0000.1E20
dictionary Start: 0000.0100 End: 0080.0100 DP: 0000.DA38
return-stack Start: 0000.0000 End: 0000.0000 DP: 0000.0000
data-stack Start: 0000.0000 End: 0000.0000 DP: 0000.0000
tib-region Start: 0000.0000 End: 0000.0000 DP: 0000.0000 Saving to kernl32l.fi-
./preforth -p ".:~+:." -e 's" mach64b.fs"' ./kernel/main.fs -e "save-cross kernl64b.fi- /usr/bin/gforth-0.7.3 bye"
redefined NIL
Unresolved: Nothing!
address-space Start: 0000.0000 End: 0000.0000 DP: 0000.0000
user-region Start: 0000.3040 End: 0000.3840 DP: 0000.3100
dictionary Start: 0000.0100 End: 0080.0100 DP: 0001.8238
return-stack Start: 0000.0000 End: 0000.0000 DP: 0000.0000
data-stack Start: 0000.0000 End: 0000.0000 DP: 0000.0000
tib-region Start: 0000.0000 End: 0000.0000 DP: 0000.0000 Saving to kernl64b.fi-
./preforth -p ".:~+:." -e 's" mach64l.fs"' ./kernel/main.fs -e "save-cross kernl64l.fi- /usr/bin/gforth-0.7.3 bye"
redefined NIL
Unresolved: Nothing!
address-space Start: 0000.0000 End: 0000.0000 DP: 0000.0000
user-region Start: 0000.3040 End: 0000.3840 DP: 0000.3100
dictionary Start: 0000.0100 End: 0080.0100 DP: 0001.8238
return-stack Start: 0000.0000 End: 0000.0000 DP: 0000.0000
data-stack Start: 0000.0000 End: 0000.0000 DP: 0000.0000
tib-region Start: 0000.0000 End: 0000.0000 DP: 0000.0000 Saving to kernl64l.fi-
cp -p kernl64l.fi kernl64l.fi~
cp -p kernl64l.fi- kernl64l.fi
cd engine && make gforth-ditc-noll OPT=-noll OPTDEFINES= OPTOBJECTS=dblsub.o
make[4]: Entering directory '/home/g/gforth/gforth/src/gforth-0.7.3/engine'
gcc -I./../arch/amd64 -I. -Wall -std=gnu99 -DHAVE_CONFIG_H -DDEFAULTPATH='".:/usr/lib/gforth/site-forth:/usr/share/gforth/site-forth:/usr/lib/gforth/0.7.3:/usr/share/gforth/0.7.3"' -D_FORTIFY_SOURCE=2 -fno-gcse -fno-strict-aliasing -fno-crossjumping -fno-reorder-blocks -falign-labels=1 -falign-loops=1 -falign-jumps=1 -fno-defer-pop -fcaller-saves -fno-inline -fno-reorder-blocks -DDOUBLY_INDIRECT -o engine-ditc-noll.o -c ./engine.c
In file included from /usr/include/bits/libc-header-start.h:33,
from /usr/include/stdio.h:27,
from ./forth.h:23,
from ./engine.c:28:
/usr/include/features.h:397:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp]
397 | # warning _FORTIFY_SOURCE requires compiling with optimization (-O)
| ^~~~~~~
gcc -I./../arch/amd64 -I. -Wall -std=gnu99 -DHAVE_CONFIG_H -DDEFAULTPATH='".:/usr/lib/gforth/site-forth:/usr/share/gforth/site-forth:/usr/lib/gforth/0.7.3:/usr/share/gforth/0.7.3"' -D_FORTIFY_SOURCE=2 -DDOUBLY_INDIRECT -o main-ditc-noll.o -c ./main.c
In file included from /usr/include/bits/libc-header-start.h:33,
from /usr/include/stdio.h:27,
from ./forth.h:23,
from ./main.c:23:
/usr/include/features.h:397:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp]
397 | # warning _FORTIFY_SOURCE requires compiling with optimization (-O)
| ^~~~~~~
./main.c:696:2: warning: #warning You can ignore the warnings about clobbered variables in gforth_go [-Wcpp]
696 | #warning You can ignore the warnings about clobbered variables in gforth_go
| ^~~~~~~
./main.c:919:14: warning: ‘bsearch_next’ defined but not used [-Wunused-function]
919 | static Label bsearch_next(Label key, Label *a, UCell n)
| ^~~~~~~~~~~~
gcc -c -I./../arch/amd64 -I. -Wall -std=gnu99 -DHAVE_CONFIG_H -DDEFAULTPATH='".:/usr/lib/gforth/site-forth:/usr/share/gforth/site-forth:/usr/lib/gforth/0.7.3:/usr/share/gforth/0.7.3"' -D_FORTIFY_SOURCE=2 -o support-noll.o ./support.c
In file included from /usr/include/bits/libc-header-start.h:33,
from /usr/include/stdio.h:27,
from ./forth.h:23,
from ./support.c:22:
/usr/include/features.h:397:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp]
397 | # warning _FORTIFY_SOURCE requires compiling with optimization (-O)
| ^~~~~~~
gcc -c -I./../arch/amd64 -I. -Wall -std=gnu99 -DHAVE_CONFIG_H -DDEFAULTPATH='".:/usr/lib/gforth/site-forth:/usr/share/gforth/site-forth:/usr/lib/gforth/0.7.3:/usr/share/gforth/0.7.3"' -D_FORTIFY_SOURCE=2 -o dblsub.o dblsub.c
In file included from /usr/include/bits/libc-header-start.h:33,
from /usr/include/stdio.h:27,
from forth.h:23,
from dblsub.c:25:
/usr/include/features.h:397:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp]
397 | # warning _FORTIFY_SOURCE requires compiling with optimization (-O)
| ^~~~~~~
gcc -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -export-dynamic engine-ditc-noll.o main-ditc-noll.o io.o signals.o support-noll.o pow10.o dblsub.o -lavcall -lffi -lltdl -lm -o gforth-ditc-noll
make[4]: Leaving directory '/home/g/gforth/gforth/src/gforth-0.7.3/engine'
cp -p engine/gforth-ditc-noll gforth-ditc
true
GFORTHD="./gforth-ditc -p .:." GFORTH="./gforth-ditc --die-on-signal -p .:. -i kernl64l.fi exboot.fs startup.fs arch/amd64/asm.fs arch/amd64/disasm.fs" includedir=`pwd`/include bindir=`pwd` libccdir=`pwd`/lib/gforth/0.7.3/libcc-named/ ./gforthmi gforth.fi --die-on-signal -p ".:~+:." -i kernl64l.fi exboot.fs startup.fs arch/amd64/asm.fs arch/amd64/disasm.fs
redefined th data offset=-60467AFE40
code offset=-7E31431F30
xt offset=-7E31431F50
60 7FE44ABA9000 7F84043FC000
68 7FE44ABAE000 7F8404401000
70 7FE44ABB3000 7F8404406000
78 7FE44ABB8000 7F840440B000
2F58 7FE44ABAD000 7F8404400000
2F60 7FE44ABB6B38 7F8404409B38
2F68 7FE44ABB2000 7F8404405000
2F78 7FE44ABB6A68 7F8404409A68
2F80 7FE44ABB6A60 7F8404409A60
2F98 56379274CCF0 55B96131ACF0
4DC0 7FE44AA40500 7F8404290500
4DF8 7FE44AA3F7E0 7F840428F7E0
10C70 7FFEB6C39F50 7FFD088E1980
10CD8 7FFEB6C3A1A8 7FFD088E1BD8
11B80 56379274C8B0 55B96131A8B0
13958 56379274CDC0 55B96131ADC0
1CB78 5637927693F0 55B9613373F0
1CC18 563792750BD0 55B96131EBD0
27E48 56379274F8E0 55B96131D8E0
2BE30 56379275E080 55B96132C080
3CB18 563792766D30 55B961334D30
grep -v '^#line ' ./engine/prim.i >engine/prim-s.i
./engine/gforth-ll-reg --die-on-signal -p ".:/usr/lib/gforth/site-forth:/usr/share/gforth/site-forth:/usr/lib/gforth/0.7.3:/usr/share/gforth/0.7.3:." test/tester.fs test/coretest.fs test/postpone.fs test/dbltest.fs test/string.fs test/float.fs test/deferred.fs test/coreext.fs test/search.fs -e bye 2>&1 | tr -d '\015' | diff -c - ./test/coretest.out
./engine/gforth-ll-reg --die-on-signal -p ".:/usr/lib/gforth/site-forth:/usr/share/gforth/site-forth:/usr/lib/gforth/0.7.3:/usr/share/gforth/0.7.3:." test/other.fs -e bye
expect ``warning: ')' missing''
warning: ')' missing
./engine/gforth-ll-reg -p ".:/usr/lib/gforth/site-forth:/usr/share/gforth/site-forth:/usr/lib/gforth/0.7.3:/usr/share/gforth/0.7.3:." test/signals.fs -e bye
./engine/gforth-ll-reg -p ".:/usr/lib/gforth/site-forth:/usr/share/gforth/site-forth:/usr/lib/gforth/0.7.3:/usr/share/gforth/0.7.3:." test/coremore.fs test/gforth.fs -e bye 2>&1 | tr -d '\015' | diff -c - ./test/gforth.out
./engine/gforth-ll-reg --die-on-signal -p ".:/usr/lib/gforth/site-forth:/usr/share/gforth/site-forth:/usr/lib/gforth/0.7.3:/usr/share/gforth/0.7.3:." code.fs test/checkans.fs -e bye | tr -d '\015' | diff -c - ./test/checkans.out
redefined place with PLACE ./engine/gforth-ll-reg --die-on-signal -p ".:/usr/lib/gforth/site-forth:/usr/share/gforth/site-forth:/usr/lib/gforth/0.7.3:/usr/share/gforth/0.7.3:." prims2x.fs -e \
"c-flag on s\" prim.i\" out-filename 2! s\" ./prim.b\" ' output-c ' output-c-combined process-file bye"| \
tr -d '\015' | grep -v '^#line '|diff -c - engine/prim-s.i
./engine/gforth-ll-reg -p ".:/usr/lib/gforth/site-forth:/usr/share/gforth/site-forth:/usr/lib/gforth/0.7.3:/usr/share/gforth/0.7.3:." test/gforth-nofast.fs -e bye
redefined { make[3]: Leaving directory '/home/g/gforth/gforth/src/gforth-0.7.3'
make[2]: Leaving directory '/home/g/gforth/gforth/src/gforth-0.7.3'
make[1]: Leaving directory '/home/g/gforth/gforth/src/gforth-0.7.3'
cd engine && make gforth-itc-noll OPT=-noll OPTDEFINES= OPTOBJECTS=dblsub.o
make[1]: Entering directory '/home/g/gforth/gforth/src/gforth-0.7.3/engine'
gcc -I./../arch/amd64 -I. -Wall -std=gnu99 -DHAVE_CONFIG_H -DDEFAULTPATH='".:/usr/lib/gforth/site-forth:/usr/share/gforth/site-forth:/usr/lib/gforth/0.7.3:/usr/share/gforth/0.7.3"' -D_FORTIFY_SOURCE=2 -fno-gcse -fno-strict-aliasing -fno-crossjumping -fno-reorder-blocks -falign-labels=1 -falign-loops=1 -falign-jumps=1 -fno-defer-pop -fcaller-saves -fno-inline -fno-reorder-blocks -DINDIRECT_THREADED -DGFORTH_DEBUGGING -o engine-itc-noll.o -c ./engine.c
In file included from /usr/include/bits/libc-header-start.h:33,
from /usr/include/stdio.h:27,
from ./forth.h:23,
from ./engine.c:28:
/usr/include/features.h:397:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp]
397 | # warning _FORTIFY_SOURCE requires compiling with optimization (-O)
| ^~~~~~~
gcc -I./../arch/amd64 -I. -Wall -std=gnu99 -DHAVE_CONFIG_H -DDEFAULTPATH='".:/usr/lib/gforth/site-forth:/usr/share/gforth/site-forth:/usr/lib/gforth/0.7.3:/usr/share/gforth/0.7.3"' -D_FORTIFY_SOURCE=2 -DINDIRECT_THREADED -DGFORTH_DEBUGGING -o main-itc-noll.o -c ./main.c
In file included from /usr/include/bits/libc-header-start.h:33,
from /usr/include/stdio.h:27,
from ./forth.h:23,
from ./main.c:23:
/usr/include/features.h:397:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp]
397 | # warning _FORTIFY_SOURCE requires compiling with optimization (-O)
| ^~~~~~~
./main.c:696:2: warning: #warning You can ignore the warnings about clobbered variables in gforth_go [-Wcpp]
696 | #warning You can ignore the warnings about clobbered variables in gforth_go
| ^~~~~~~
./main.c:919:14: warning: ‘bsearch_next’ defined but not used [-Wunused-function]
919 | static Label bsearch_next(Label key, Label *a, UCell n)
| ^~~~~~~~~~~~
gcc -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -export-dynamic engine-itc-noll.o main-itc-noll.o io.o signals.o support-noll.o pow10.o dblsub.o -lavcall -lffi -lltdl -lm -o gforth-itc-noll
make[1]: Leaving directory '/home/g/gforth/gforth/src/gforth-0.7.3/engine'
cp -p engine/gforth-itc-noll gforth-itc
true
cp -p kernl16l.fi kernl16l.fi~
cp -p kernl16l.fi- kernl16l.fi
cp -p kernl16b.fi kernl16b.fi~
cp -p kernl16b.fi- kernl16b.fi
cp -p kernl32l.fi kernl32l.fi~
cp -p kernl32l.fi- kernl32l.fi
cp -p kernl32b.fi kernl32b.fi~
cp -p kernl32b.fi- kernl32b.fi
cp -p kernl64b.fi kernl64b.fi~
cp -p kernl64b.fi- kernl64b.fi
(cd . && m4 -s -Dcondbranch_opt=1 -DSTACK_CACHE_FILE=cache-fast1.vmg -DSTACK_CACHE_REGS=cache-regs1.vmg prim) >prim-fast.b
sleep 1 #should make hpux-workaround unnecessary
GFORTH="./preforth -p ".:~+:."" ./gfgen -fast
if test -z ""; then \
for i in -ll-reg -noll-reg -ll -noll; do make optgforth-fast OPT=$i && cp -p gforth-fast${i} gforth-fast && break; done; \
else \
( cd engine && make gforth-fast ) && \
cp -p engine/gforth-fast gforth-fast && \
chcon -t unconfined_execmem_exec_t gforth-fast; \
true; \
make checkone ENGINE=./engine/gforth-fast; \
fi
make[1]: Entering directory '/home/g/gforth/gforth/src/gforth-0.7.3'
Makefile:865: warning: ignoring prerequisites on suffix rule definition
Makefile:865: warning: ignoring prerequisites on suffix rule definition
make gforth-fast-ll-reg OPT=-ll-reg OPTDEFINES="-DFORCE_LL -DFORCE_REG" OPTOBJECTS=
make[2]: Entering directory '/home/g/gforth/gforth/src/gforth-0.7.3'
Makefile:865: warning: ignoring prerequisites on suffix rule definition
Makefile:865: warning: ignoring prerequisites on suffix rule definition
if test -z "-ll-reg"; then \
for i in -ll-reg -noll-reg -ll -noll; do make optgforth-fast OPT=$i && cp -p gforth-fast${i} gforth-fast-ll-reg && break; done; \
else \
( cd engine && make gforth-fast-ll-reg ) && \
cp -p engine/gforth-fast-ll-reg gforth-fast-ll-reg && \
chcon -t unconfined_execmem_exec_t gforth-fast-ll-reg; \
true; \
make checkone ENGINE=./engine/gforth-fast-ll-reg; \
fi
make[3]: Entering directory '/home/g/gforth/gforth/src/gforth-0.7.3/engine'
gcc -I./../arch/amd64 -I. -Wall -std=gnu99 -DHAVE_CONFIG_H -DFORCE_LL -DFORCE_REG -DDEFAULTPATH='".:/usr/lib/gforth/site-forth:/usr/share/gforth/site-forth:/usr/lib/gforth/0.7.3:/usr/share/gforth/0.7.3"' -D_FORTIFY_SOURCE=2 -fno-gcse -fno-strict-aliasing -fno-crossjumping -fno-reorder-blocks -falign-labels=1 -falign-loops=1 -falign-jumps=1 -fno-defer-pop -fcaller-saves -fno-inline -fno-reorder-blocks -o engine-fast-ll-reg.o -c ./engine.c
In file included from /usr/include/bits/libc-header-start.h:33,
from /usr/include/stdio.h:27,
from ./forth.h:23,
from ./engine.c:28:
/usr/include/features.h:397:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp]
397 | # warning _FORTIFY_SOURCE requires compiling with optimization (-O)
| ^~~~~~~
gcc -I./../arch/amd64 -I. -Wall -std=gnu99 -DHAVE_CONFIG_H -DFORCE_LL -DFORCE_REG -DDEFAULTPATH='".:/usr/lib/gforth/site-forth:/usr/share/gforth/site-forth:/usr/lib/gforth/0.7.3:/usr/share/gforth/0.7.3"' -D_FORTIFY_SOURCE=2 -fno-gcse -fno-strict-aliasing -fno-crossjumping -fno-reorder-blocks -falign-labels=1 -falign-loops=1 -falign-jumps=1 -fno-defer-pop -fcaller-saves -fno-inline -fno-reorder-blocks -DENGINE=2 -o engine-fast2-ll-reg.o -c ./engine.c
In file included from /usr/include/bits/libc-header-start.h:33,
from /usr/include/stdio.h:27,
from ./forth.h:23,
from ./engine.c:28:
/usr/include/features.h:397:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp]
397 | # warning _FORTIFY_SOURCE requires compiling with optimization (-O)
| ^~~~~~~
gcc -I./../arch/amd64 -I. -Wall -std=gnu99 -DHAVE_CONFIG_H -DFORCE_LL -DFORCE_REG -DDEFAULTPATH='".:/usr/lib/gforth/site-forth:/usr/share/gforth/site-forth:/usr/lib/gforth/0.7.3:/usr/share/gforth/0.7.3"' -D_FORTIFY_SOURCE=2 -o main-fast-ll-reg.o -c ./main.c
In file included from /usr/include/bits/libc-header-start.h:33,
from /usr/include/stdio.h:27,
from ./forth.h:23,
from ./main.c:23:
/usr/include/features.h:397:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp]
397 | # warning _FORTIFY_SOURCE requires compiling with optimization (-O)
| ^~~~~~~
./main.c:252:12: warning: duplicate ‘const’ declaration specifier [-Wduplicate-decl-specifier]
252 | const char const* const prim_names[]={
| ^~~~~
./main.c:696:2: warning: #warning You can ignore the warnings about clobbered variables in gforth_go [-Wcpp]
696 | #warning You can ignore the warnings about clobbered variables in gforth_go
| ^~~~~~~
gcc -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -export-dynamic engine-fast-ll-reg.o engine-fast2-ll-reg.o main-fast-ll-reg.o io.o signals.o support-ll-reg.o pow10.o -lavcall -lffi -lltdl -lm -o gforth-fast-ll-reg
make[3]: Leaving directory '/home/g/gforth/gforth/src/gforth-0.7.3/engine'
chcon: failed to get security context of 'gforth-fast-ll-reg': Operation not supported
make[3]: Entering directory '/home/g/gforth/gforth/src/gforth-0.7.3'
Makefile:865: warning: ignoring prerequisites on suffix rule definition
Makefile:865: warning: ignoring prerequisites on suffix rule definition
./engine/gforth-fast-ll-reg --die-on-signal -p ".:/usr/lib/gforth/site-forth:/usr/share/gforth/site-forth:/usr/lib/gforth/0.7.3:/usr/share/gforth/0.7.3:." test/tester.fs test/coretest.fs test/postpone.fs test/dbltest.fs test/string.fs test/float.fs test/deferred.fs test/coreext.fs test/search.fs -e bye 2>&1 | tr -d '\015' | diff -c - ./test/coretest.out
./engine/gforth-fast-ll-reg --die-on-signal -p ".:/usr/lib/gforth/site-forth:/usr/share/gforth/site-forth:/usr/lib/gforth/0.7.3:/usr/share/gforth/0.7.3:." test/other.fs -e bye
expect ``warning: ')' missing''
warning: ')' missing
./engine/gforth-fast-ll-reg -p ".:/usr/lib/gforth/site-forth:/usr/share/gforth/site-forth:/usr/lib/gforth/0.7.3:/usr/share/gforth/0.7.3:." test/signals.fs -e bye
./engine/gforth-fast-ll-reg -p ".:/usr/lib/gforth/site-forth:/usr/share/gforth/site-forth:/usr/lib/gforth/0.7.3:/usr/share/gforth/0.7.3:." test/coremore.fs test/gforth.fs -e bye 2>&1 | tr -d '\015' | diff -c - ./test/gforth.out
./engine/gforth-fast-ll-reg --die-on-signal -p ".:/usr/lib/gforth/site-forth:/usr/share/gforth/site-forth:/usr/lib/gforth/0.7.3:/usr/share/gforth/0.7.3:." code.fs test/checkans.fs -e bye | tr -d '\015' | diff -c - ./test/checkans.out
redefined place with PLACE ./engine/gforth-fast-ll-reg --die-on-signal -p ".:/usr/lib/gforth/site-forth:/usr/share/gforth/site-forth:/usr/lib/gforth/0.7.3:/usr/share/gforth/0.7.3:." prims2x.fs -e \
"c-flag on s\" prim.i\" out-filename 2! s\" ./prim.b\" ' output-c ' output-c-combined process-file bye"| \
tr -d '\015' | grep -v '^#line '|diff -c - engine/prim-s.i
make[3]: Leaving directory '/home/g/gforth/gforth/src/gforth-0.7.3'
make[2]: Leaving directory '/home/g/gforth/gforth/src/gforth-0.7.3'
make[1]: Leaving directory '/home/g/gforth/gforth/src/gforth-0.7.3'
emacs -batch -f batch-byte-compile gforth.el
make: emacs: No such file or directory
make: [Makefile:913: gforth.elc] Error 127 (ignored)
rm -rf lib/gforth/0.7.3/libcc-named/
for i in libffi.fs fflib.fs cstr.fs unix/socket.fs; do ./gforth -e "s\" `pwd`/lib/gforth/0.7.3/libcc-named/\" libcc-named-dir-v 2! libcc-path clear-path libcc-named-dir libcc-path also-path :noname 2drop s\" /usr/lib/gforth/0.7.3/libcc-named/\" ; is replace-rpath" ./$i -e bye; done
/home/g/gforth/gforth/src/gforth-0.7.3/lib/gforth/0.7.3/libcc-named/libffi.c: In function ‘libffi_LTX_gforth_c_ffi_prep_closure1_aaa_n’:
/home/g/gforth/gforth/src/gforth-0.7.3/lib/gforth/0.7.3/libcc-named/libffi.c:95:3: warning: ‘ffi_prep_closure’ is deprecated: use ffi_prep_closure_loc instead [-Wdeprecated-declarations]
95 | sp[2]=ffi_prep_closure1((void *)(sp[2]),(void *)(sp[1]),(void *)(sp[0]));
| ^~
In file included from /home/g/gforth/gforth/src/gforth-0.7.3/lib/gforth/0.7.3/libcc-named/libffi.c:3:
/usr/include/ffi.h:334:1: note: declared here
334 | ffi_prep_closure (ffi_closure*,
| ^~~~~~~~~~~~~~~~
/home/g/gforth/gforth/src/gforth-0.7.3/lib/gforth/0.7.3/libcc-named/fflib.c: In function ‘fflib_LTX_gforth_c_alloc_callback1_a_a’:
/home/g/gforth/gforth/src/gforth-0.7.3/lib/gforth/0.7.3/libcc-named/fflib.c:177:46: warning: passing argument 1 of ‘alloc_callback’ from incompatible pointer type [-Wincompatible-pointer-types]
177 | #define alloc_callback1(a_ip) alloc_callback(gforth_callback_ffcall, (Xt *)a_ip)
| ^~~~~~~~~~~~~~~~~~~~~~
| |
| void (*)(void ***, void *)
/home/g/gforth/gforth/src/gforth-0.7.3/lib/gforth/0.7.3/libcc-named/fflib.c:182:15: note: in expansion of macro ‘alloc_callback1’
182 | sp[0]=(Cell)alloc_callback1((void *)(sp[0]));
| ^~~~~~~~~~~~~~~
In file included from /home/g/gforth/gforth/src/gforth-0.7.3/lib/gforth/0.7.3/libcc-named/fflib.c:3:
/usr/include/callback.h:58:35: note: expected ‘callback_function_t’ {aka ‘void (*)(void *, struct vacall_alist *)’} but argument is of type ‘void (*)(void ***, void *)’
58 | extern callback_t alloc_callback (callback_function_t /* ADDRESS */, void* /* DATA */);
| ^~~~~~~~~~~~~~~~~~~
make checkone check-nofast ENGINE="./gforth --no-dynamic" >/dev/null 2>&1
make checkone check-nofast ENGINE="./gforth-itc" >/dev/null 2>&1
make checkone check-nofast ENGINE="./gforth-ditc" >/dev/null 2>&1
make checkone ENGINE="./gforth-fast --no-dynamic" >/dev/null 2>&1
make checkone check-nofast ENGINE="./gforth" >/dev/null 2>&1
make checkone ENGINE="./gforth-fast" >/dev/null 2>&1
*** Check successful ***
./gforth-fast --diag -e bye
*** no performance problems ***
==> Entering fakeroot environment...
==> Starting package()...
Makefile:865: warning: ignoring prerequisites on suffix rule definition
Makefile:865: warning: ignoring prerequisites on suffix rule definition
./preforth -p ".:~+:." prims2x.fs -e "s\" ./prim.b\" ' output-tag dup process-file bye"|sed 's#^./prim#prim#' >prim.TAGS-
cp -p prim.TAGS- prim.TAGS
rm prim.TAGS-
./gforth --die-on-signal -p ".:~+:." -i kernl64l.fi etags.fs except.fs startup.fs -e bye
cat TAGS prim.TAGS kernel.TAGS >gforth.TAGS
rm TAGS
cp -p gforth.TAGS TAGS
sed 's;^\./;;' TAGS|./gforth -e 's" '/usr/share/gforth/0.7.3/'"' ./install-tags.fs -e bye >install.TAGS
for i in /usr/bin /usr/share/man/man1 /usr/share/info /usr/lib/gforth/0.7.3 /usr/share/gforth/0.7.3 /usr/lib/gforth/site-forth /usr/share/gforth/site-forth /usr/include/gforth/0.7.3 /usr/lib/gforth/0.7.3/libcc-named/; do \
./mkinstalldirs /home/g/gforth/gforth/pkg/gforth$i; \
done
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/bin
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/share/man/man1
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/share/info
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/lib/gforth/0.7.3
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/lib/gforth/site-forth
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/site-forth
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/include/gforth/0.7.3
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/lib/gforth/0.7.3/libcc-named/
for i in . engine kernel doc asm ec test compat unix arch arch/generic arch/m68k arch/mips arch/386 arch/hppa arch/sparc arch/power arch/alpha arch/4stack arch/misc arch/6502 arch/8086 arch/avr arch/c165 arch/h8 arch/shboom arch/sharc arch/ia64 arch/amd64 arch/arm arch/r8c vmgen-ex; do \
./mkinstalldirs /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3/$i; \
done
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3/engine
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3/kernel
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3/doc
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3/asm
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3/ec
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3/test
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3/compat
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3/unix
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3/arch
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3/arch/generic
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3/arch/m68k
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3/arch/mips
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3/arch/386
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3/arch/hppa
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3/arch/sparc
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3/arch/power
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3/arch/alpha
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3/arch/4stack
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3/arch/misc
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3/arch/6502
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3/arch/8086
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3/arch/avr
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3/arch/c165
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3/arch/h8
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3/arch/shboom
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3/arch/sharc
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3/arch/ia64
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3/arch/amd64
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3/arch/arm
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3/arch/r8c
mkdir -p -- /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3/vmgen-ex
rm -rf /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3/engine
touch /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/site-forth/siteinit.fs
rm /home/g/gforth/gforth/pkg/gforth/usr/bin/gforth /home/g/gforth/gforth/pkg/gforth/usr/bin/gforth-0.7.3 /home/g/gforth/gforth/pkg/gforth/usr/bin/gforthmi /home/g/gforth/gforth/pkg/gforth/usr/bin/vmgen
rm: cannot remove '/home/g/gforth/gforth/pkg/gforth/usr/bin/gforth': No such file or directory
rm: cannot remove '/home/g/gforth/gforth/pkg/gforth/usr/bin/gforth-0.7.3': No such file or directory
rm: cannot remove '/home/g/gforth/gforth/pkg/gforth/usr/bin/gforthmi': No such file or directory
rm: cannot remove '/home/g/gforth/gforth/pkg/gforth/usr/bin/vmgen': No such file or directory
make: [Makefile:594: install] Error 1 (ignored)
rm /home/g/gforth/gforth/pkg/gforth/usr/bin/gforth-fast /home/g/gforth/gforth/pkg/gforth/usr/bin/gforth-fast-0.7.3
rm: cannot remove '/home/g/gforth/gforth/pkg/gforth/usr/bin/gforth-fast': No such file or directory
rm: cannot remove '/home/g/gforth/gforth/pkg/gforth/usr/bin/gforth-fast-0.7.3': No such file or directory
make: [Makefile:595: install] Error 1 (ignored)
rm /home/g/gforth/gforth/pkg/gforth/usr/bin/gforth-itc /home/g/gforth/gforth/pkg/gforth/usr/bin/gforth-itc-0.7.3
rm: cannot remove '/home/g/gforth/gforth/pkg/gforth/usr/bin/gforth-itc': No such file or directory
rm: cannot remove '/home/g/gforth/gforth/pkg/gforth/usr/bin/gforth-itc-0.7.3': No such file or directory
make: [Makefile:596: install] Error 1 (ignored)
/usr/bin/install -c gforth /home/g/gforth/gforth/pkg/gforth/usr/bin/gforth-0.7.3
chcon -t unconfined_execmem_exec_t /home/g/gforth/gforth/pkg/gforth/usr/bin/gforth-0.7.3
chcon: failed to get security context of '/home/g/gforth/gforth/pkg/gforth/usr/bin/gforth-0.7.3': Operation not supported
make: [Makefile:598: install] Error 1 (ignored)
(cd /home/g/gforth/gforth/pkg/gforth/usr/bin && ln -s gforth-0.7.3 gforth)
/usr/bin/install -c gforth-fast /home/g/gforth/gforth/pkg/gforth/usr/bin/gforth-fast-0.7.3
chcon -t unconfined_execmem_exec_t /home/g/gforth/gforth/pkg/gforth/usr/bin/gforth-fast-0.7.3
chcon: failed to get security context of '/home/g/gforth/gforth/pkg/gforth/usr/bin/gforth-fast-0.7.3': Operation not supported
make: [Makefile:601: install] Error 1 (ignored)
(cd /home/g/gforth/gforth/pkg/gforth/usr/bin && ln -s gforth-fast-0.7.3 gforth-fast)
/usr/bin/install -c gforth-itc /home/g/gforth/gforth/pkg/gforth/usr/bin/gforth-itc-0.7.3
(cd /home/g/gforth/gforth/pkg/gforth/usr/bin && ln -s gforth-itc-0.7.3 gforth-itc)
/usr/bin/install -c gforthmi /home/g/gforth/gforth/pkg/gforth/usr/bin/gforthmi-0.7.3
/usr/bin/install -c vmgen /home/g/gforth/gforth/pkg/gforth/usr/bin/vmgen-0.7.3
/usr/bin/install -c gforth-ditc /home/g/gforth/gforth/pkg/gforth/usr/lib/gforth/0.7.3
(cd /home/g/gforth/gforth/pkg/gforth/usr/bin && ln -s gforthmi-0.7.3 gforthmi)
(cd /home/g/gforth/gforth/pkg/gforth/usr/bin && ln -s vmgen-0.7.3 vmgen)
/usr/bin/install -c -m 644 ./doc/gforth.1 /home/g/gforth/gforth/pkg/gforth/usr/share/man/man1
for i in ./doc/gforth.info* ./doc/vmgen.info*; do /usr/bin/install -c -m 644 $i /home/g/gforth/gforth/pkg/gforth/usr/share/info; done
for i in mach16b.fs mach16l.fs mach32b.fs mach32l.fs mach64b.fs mach64l.fs machpc.fs.in kernel/aliases0.fs kernel/aliases.fs kernel/args.fs kernel/cbr.fs kernel/cloop.fs kernel/cond.fs kernel/cond-old.fs cross.fs kernel/errore.fs kernel/files.fs kernel/require.fs kernel/paths.fs kernel/kernel.fs kernel/main.fs kernel/prim0.fs search.fs kernel/quotes.fs kernel/tools.fs kernel/toolsext.fs kernel/vars.fs kernel/accept.fs kernel/basics.fs kernel/int.fs kernel/comp.fs kernel/io.fs kernel/input.fs kernel/license.fs kernel/nio.fs kernel/saccept.fs kernel/doers.fs kernel/getdoers.fs kernel/pass.fs kernel/xchars.fs assert.fs backtrac.fs blocked.fb blocks.fs bufio.fs code.fs debug.fs debugs.fs dis-gdb.fs ekey.fs envos.fs savesys.fs environ.fs errors.fs exboot.fs except.fs extend.fs float.fs glocals.fs hash.fs history.fs intcomp.fs mkdir.fs libcc.fs locals.fs look.fs mkdir.fs quotes.fs search.fs see.fs see-ext.fs simp-see.fs source.fs startup.fs struct.fs struct0x.fs stuff.fs tasker.fs termsize.fs utf-8.fs vt100.fs vt100key.fs wordinfo.fs arch/386/asm.fs arch/386/disasm.fs arch/amd64/asm.fs arch/amd64/disasm.fs arch/alpha/asm.fs arch/alpha/disasm.fs arch/alpha/testasm.fs arch/mips/asm.fs arch/mips/disasm.fs arch/mips/insts.fs arch/mips/testasm.fs arch/mips/testdisasm.fs arch/power/asm.fs arch/power/disasm.fs arch/power/inst.fs asm/README asm/bitmask.fs asm/numref.fs chains.fs asm/basic.fs asm/generic.fs asm/target.fs ec/README ec/mirror.fs ec/shex.fs ec/builttag.fs ec/dotx.fs ec/nesting.fs build-ec.in libffi.fs fflib.fs cstr.fs unix/socket.fs ans-report.fs ansi.fs answords.fs colorize.fs comp-i.fs complex.fs depth-changes.fs dosekey.fs doskey.fs ds2texi.fs envos.dos envos.os2 etags.fs fft.fs filedump.fs fi2c.fs fsl-util.4th glosgen.fs gray.fs httpd.fs install-tags.fs make-app.fs doc/makedoc.fs locate.fs more.fs onebench.fs other.fs prims2x.fs prims2x0.6.2.fs proxy.fs random.fs regexp.fs sokoban.fs string.fs table.fs tags.fs tt.fs unbuffer.fs wordsets.fs xwords.fs test/tester.fs test/ttester.fs test/coretest.fs test/postpone.fs test/dbltest.fs test/string.fs test/float.fs test/search.fs test/gforth.fs test/other.fs test/signals.fs test/checkans.fs test/primtest.fs test/coreext.fs test/deferred.fs test/coremore.fs test/gforth-nofast.fs test/libcc.fs bubble.fs siev.fs matrix.fs fib.fs oof.fs oofsampl.fs objects.fs objexamp.fs mini-oof.fs moof-exm.fs moofglos.fs fixpath.fs add.fs lib.fs oldlib.fs sieve.fs endtry-iferror.fs recover-endtry.fs compat/README compat/anslocal.fs compat/assert.fs compat/control.fs compat/defer.fs compat/exception.fs compat/execute-parsing.fs compat/loops.fs compat/required.fs compat/strcomp.fs compat/struct.fs compat/vocabulary.fs prim; do \
/usr/bin/install -c -m 644 ./$i /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3/$i; \
done
/usr/bin/install -c -m 644 kernl64l.fi /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3
>>>>>Please install gforth.{el,elc} in your .../emacs/site-lisp directory
/usr/bin/install -c -m 644 gforth.fi /home/g/gforth/gforth/pkg/gforth/usr/lib/gforth/0.7.3
/usr/bin/install -c -m 644 install.TAGS /home/g/gforth/gforth/pkg/gforth/usr/share/gforth/0.7.3/TAGS
/usr/bin/install -c -m 644 include/gforth/0.7.3/* /home/g/gforth/gforth/pkg/gforth/usr/include/gforth/0.7.3
if test -n "libtool"; then for i in libffi.fs fflib.fs cstr.fs unix/socket.fs; do \
libtool --silent --mode=install /usr/bin/install -c lib/gforth/0.7.3/libcc-named/`basename $i .fs`.la /home/g/gforth/gforth/pkg/gforth/usr/lib/gforth/0.7.3/libcc-named/`basename $i .fs`.la; \
done; fi
libtool: warning: remember to run 'libtool --finish /usr/lib/gforth/0.7.3/libcc-named/'
libtool: warning: remember to run 'libtool --finish /usr/lib/gforth/0.7.3/libcc-named/'
libtool: warning: remember to run 'libtool --finish /usr/lib/gforth/0.7.3/libcc-named/'
libtool: warning: remember to run 'libtool --finish /usr/lib/gforth/0.7.3/libcc-named/'
/usr/bin/install-info --info-dir=/home/g/gforth/gforth/pkg/gforth/usr/share/info /home/g/gforth/gforth/pkg/gforth/usr/share/info/gforth.info
/usr/bin/install-info --info-dir=/home/g/gforth/gforth/pkg/gforth/usr/share/info /home/g/gforth/gforth/pkg/gforth/usr/share/info/vmgen.info
==> Tidying install...
-> Purging unwanted files...
-> Removing static library files...
-> Stripping unneeded symbols from binaries and libraries...
-> Compressing man and info pages...
==> Checking for packaging issues...
==> WARNING: Package contains reference to $srcdir
usr/lib/gforth/0.7.3/gforth.fi
==> Creating package "gforth"...
-> Generating .PKGINFO file...
-> Generating .BUILDINFO file...
-> Adding install file...
-> Generating .MTREE file...
-> Compressing package...
==> Leaving fakeroot environment.
==> Finished making: gforth 0.7.3-1 (Tue 21 Apr 2020 07:46:04 PM EDT)
==> Installing package gforth with pacman -U...
[sudo] password for g:
loading packages...
warning: gforth-0.7.3-1 is up to date -- reinstalling
resolving dependencies...
looking for conflicting packages...
Packages (1) gforth-0.7.3-1
Total Installed Size: 2.88 MiB
Net Upgrade Size: 0.00 MiB
:: Proceed with installation? [Y/n] Y
(1/1) checking keys in keyring [###########################################] 100%
(1/1) checking package integrity [###########################################] 100%
(1/1) loading package files [###########################################] 100%
(1/1) checking for file conflicts [###########################################] 100%
(1/1) checking available disk space [###########################################] 100%
:: Processing package changes...
(1/1) reinstalling gforth [###########################################] 100%
:: Running post-transaction hooks...
(1/2) Arming ConditionNeedsUpdate...
(2/2) Updating the info directory file...
[g]$ gforth
gforth: error while loading shared libraries: libffi.so.6: cannot open shared object file: No such file or directory
Offline
[root]# pacman -Q libffi
libffi 3.3-3
Offline
It seems to have something to do with libffi.so.7 not 6
Offline
type -a gforth
Offline
hmmmm
https://bbs.archlinux.org/viewtopic.php?id=254650
2020-04-13 23:35:27
Scimmia
Bug Wrangler
Registered: 2012-08-31
Posts: 7,545
Re: [SOLVED] libffi.so.6: cannot open shared object file: No Such file ...
Seems you're habitually running pacman -Sy. DON'T DO THAT. I don't see where you've updated the entire system at all, which is the cause of your problem. Update everything, then never, ever run -Sy again.
Offline
[root]# ls -lah /usr/lib/libffi*
lrwxrwxrwx 1 root root 15 Apr 9 00:09 /usr/lib/libffi.so -> libffi.so.7.1.0
lrwxrwxrwx 1 root root 15 Apr 9 00:09 /usr/lib/libffi.so.7 -> libffi.so.7.1.0
-rwxr-xr-x 1 root root 42K Apr 9 00:09 /usr/lib/libffi.so.7.1.0
Last edited by nationalismendtrade (2020-04-22 00:15:21)
Offline
type -a gforth
Waiting for this
Offline
type -a gforth
[g]$ type -a gforth
gforth is /usr/local/bin/gforth
gforth is /usr/bin/gforth
[g]$ /usr/bin/gforth
Gforth 0.7.3, Copyright (C) 1995-2008 Free Software Foundation, Inc.
Gforth comes with ABSOLUTELY NO WARRANTY; for details type `license'
Type `bye' to exit
ah now all is well.... I had a garbage /usr/local/bin/gforth hanging around from my own attempt to compile! Thank you! (I had run make clean I had thought...)
AUR works thanks solved
Offline
Please do not forget to mark your thread as solved by edtting the title and prepending [SOLVED]. Also please use code tags for commands and their outputs.
Offline
Not quite sure how to mark thread SOLVED?
Offline
You can edit the title by editing the first post in the thread.
Offline
https://wiki.archlinux.org/index.php/Co … ow_to_post
https://wiki.archlinux.org/index.php/Co … s_and_code
Sakura:-
Mobo: MSI MAG X570S TORPEDO MAX // Processor: AMD Ryzen 9 5950X @4.9GHz // GFX: AMD Radeon RX 5700 XT // RAM: 32GB (4x 8GB) Corsair DDR4 (@ 3000MHz) // Storage: 1x 3TB HDD, 6x 1TB SSD, 2x 120GB SSD, 1x 275GB M2 SSD
Making lemonade from lemons since 2015.
Offline