Who's Online |
76 user(s) are online ( 58 user(s) are browsing Forums)
Members: 0
Guests: 76
more...
|
|
|
|
|
Re: What's the best/latest EUAE build for OS4?
|
Posted on: 2022/12/30 12:20
#121
|
Just popping in 
|
@LiveForIt
Thank you, with the latest version I did not encounter the slowdown issue yet. But this versions seems to be a bit slower than the previous one. But it is still okay on 1920x1080x8bit.
And I am using TuneNet, WookieChat, IBrowse and Odyssey in parallel. With the old version the issue triggered even without using any of these programs.
I am testing with X5000 and OS4.1 FE Update 2 (Kickstart 54.30, Workbench 53.18).
Update: The version on OneDrive is the latest one now.
|
|
|
|
|
|
Re: What's the best/latest EUAE build for OS4?
|
Posted on: 2022/12/29 19:54
#122
|
Just popping in 
|
@LiveForIt
Not sure, if it is caused by more aggressive/intense calculations, uae should be slow from the start, and the performance should not drop suddenly after some time.
Also, this would not explain why a thread keeps running after I quit uae using "CRTL + ALT + Q".
|
|
|
|
|
|
Re: What's the best/latest EUAE build for OS4?
|
Posted on: 2022/12/29 18:03
#123
|
Just popping in 
|
Thanks for the new changes. But they did not help; if at all they made the issue trigger faster for me. With the new binary the slowdown happened after a minute or so with just loading and compiling one example in StormC.
Before, it was quite hard to trigger the issue.
BTW: You can download the new binary from OneDrive. The object behind the link is updated.
|
|
|
|
|
|
Re: What's the best/latest EUAE build for OS4?
|
Posted on: 2022/12/29 10:26
#124
|
Just popping in 
|
Okay, now I had also your issue. Opening and closing drawers, changing the background, and finally doing a reset triggered it.
OS 4.1 got very slow until I quitted e-uae. And then I got the popup that some parts of uae are still running.
|
|
|
|
|
|
Re: What's the best/latest EUAE build for OS4?
|
Posted on: 2022/12/29 9:01
#125
|
Just popping in 
|
Yes, I did the same steps as you: 1) Ran Prefs/ScreenMode and selected 1920x1080x8 and saved. It really switched to 8bit mode as I now have a green line at the bottom, and background image is dithered. 2) Stopped euae. 3) Started euae and selected 1920x1080x32 4) Waited for 2 mins. 5) Started StormC4 and ran some examples 8bit/32bit mode feels a bit more sluggish than 32bit/32bit, but I did not experience any slowdowns. To be clear, it feels sluggish right from the start, but it does not get slower with time. This is my version compiled today: https://1drv.ms/u/s!ApOoV0ole8uGrdcZtrVMUSS2-FI9cw?e=axL7qL
|
|
|
|
|
|
Re: What's the best/latest EUAE build for OS4?
|
Posted on: 2022/12/28 21:41
#126
|
Just popping in 
|
@kas1e
No, I did not. I tested 32bit on 32bit and 8bit on 32bit.
32bit/32bit feels a bit faster than 8bit/32bit, but I did not see any issues with running 8bit P96 screens.
Running AmigaOS 3.2.1 with 1920x1080x8bit, P96 Aminet on 1920x1080x32bit OS4 screen.
|
|
|
|
|
|
Re: What's the best/latest EUAE build for OS4?
|
Posted on: 2022/12/28 20:24
#127
|
Just popping in 
|
Hi,
I tried the lasted commit (#102 - P96: general improvements), and while 32bit P96 on a 32bit OS4 screen feels faster, I did not experience any major slowdowns or hanging uae on exit. Even after working for several minutes (starting and stopping StormC4 and compiling some example programs).
The OS is a fairly fresh AmigaOS 3.2.1 with the Aminet P96 installation. I had troubles in the past using the newer 3.x from IComp.
I will try later with my (rather fresh) AmigaOS 3.9 installation, to see if I can reproduce your issues there.
My specs: AmigaOne X5000/20, 2.0 Ghz, 4 GB RAM, 240 GB SSD, Radeon R7 250, Sound Blaster Recon3D/Z, AmigaOS 4.1 FE Update 2, Enhancer 2.2, RadeonHD 3.7
|
|
|
|
|
|
Re: What's the best/latest EUAE build for OS4?
|
Posted on: 2022/12/18 10:25
#128
|
Just popping in 
|
Magnificent work! I did some smaller tests, and the AmiGFX version seems to be much faster than SDL. For example, opening the text editor in StormC4 takes several seconds on SDL, while it is instantaneous on AmiGFX. There are two smaller issues with hosting directories as drives that might be worth looking into: - Mounting the root directory of a host drive (e.g. RAM:) duplicates the entries when running "dir" on the guest. For example, I mount the host RAM: as Shared: in AmigaOS 3.2:
Workbench: > cd Shared:
Shared: > dir
T (dir)
Disk.info
Shared: > dir
T (dir)
T (dir)
Disk.info Disk.info
- Setting the "s", "p" or "h" permission on a file will create a _UAEFSDB.___ file with the permissions. But on AmigaOS4, you could just set the permissions directly.
|
|
|
|
|
|
Re: What's the best/latest EUAE build for OS4?
|
Posted on: 2022/12/11 14:02
#129
|
Just popping in 
|
There are a couple of issues with the configure tests. To fix the issues with the wrong sizes, I use the following:
sed -i 's/SIZEOF_CHAR [0-9]/SIZEOF_CHAR 1/' src/sysconfig.h
sed -i 's/SIZEOF_CHAR [0-9]/SIZEOF_CHAR 1/' src/tools/sysconfig.h
sed -i 's/SIZEOF_CHAR [0-9]/SIZEOF_CHAR 1/' src/include/config.h
sed -i 's/SIZEOF_SHORT [0-9]/SIZEOF_SHORT 2/' src/sysconfig.h
sed -i 's/SIZEOF_SHORT [0-9]/SIZEOF_SHORT 2/' src/tools/sysconfig.h
sed -i 's/SIZEOF_SHORT [0-9]/SIZEOF_SHORT 2/' src/include/config.h
sed -i 's/SIZEOF_INT [0-9]/SIZEOF_INT 4/' src/sysconfig.h
sed -i 's/SIZEOF_INT [0-9]/SIZEOF_INT 4/' src/tools/sysconfig.h
sed -i 's/SIZEOF_INT [0-9]/SIZEOF_INT 4/' src/include/config.h
sed -i 's/SIZEOF_LONG [0-9]/SIZEOF_LONG 4/' src/sysconfig.h
sed -i 's/SIZEOF_LONG [0-9]/SIZEOF_LONG 4/' src/tools/sysconfig.h
sed -i 's/SIZEOF_LONG [0-9]/SIZEOF_LONG 4/' src/include/config.h
sed -i 's/SIZEOF_LONG_LONG [0-9]/SIZEOF_LONG_LONG 8/' src/sysconfig.h
sed -i 's/SIZEOF_LONG_LONG [0-9]/SIZEOF_LONG_LONG 8/' src/tools/sysconfig.h
sed -i 's/SIZEOF_LONG_LONG [0-9]/SIZEOF_LONG_LONG 8/' src/include/config.h
sed -i 's/SIZEOF_VOID_P [0-9]/SIZEOF_VOID_P 4/' src/sysconfig.h
sed -i 's/SIZEOF_VOID_P [0-9]/SIZEOF_VOID_P 4/' src/tools/sysconfig.h
sed -i 's/SIZEOF_VOID_P [0-9]/SIZEOF_VOID_P 4/' src/include/config.h
I made some smaller fixes to the e-uae codebase (#-key under SDL, fix for setting timestamps on mounts) at https://github.com/salass00/e-uae.
|
|
|
|
|
|
Re: The RAD (And logging serial output techniques)
|
Posted on: 2022/12/8 13:40
#130
|
Just popping in 
|
When I am thinking about it, you could use ssh2-handler or SMBFS to store your logs on a different PC or NAS. That will prevent corrupting your local filesystems if the system freezes.
|
|
|
|
|
|
Re: The RAD
|
Posted on: 2022/12/8 13:38
#131
|
Just popping in 
|
The best way is to use a second PC/laptop.
But I understand that most people do not have additional hardware or space for that.
|
|
|
|
|
|
Re: The RAD
|
Posted on: 2022/12/8 13:34
#132
|
Just popping in 
|
I am using an X5000 with RadeonHD 3.7, and for me the RAD never survived a (warm) reboot.
And yes, with warm reboot I mean CRTL+WIN+WIN, or the "reboot fast" cli command, or using "Restart AmigaOS" of the Shutdown option in the menu.
|
|
|
|
|
|
Re: Gnu Make drops AmigaOS support
|
Posted on: 2022/11/6 13:33
#133
|
Just popping in 
|
No, I am telling you I cannot make a make that can make a make.
|
|
|
|
|
|
Re: Gnu Make drops AmigaOS support
|
Posted on: 2022/11/5 15:55
#134
|
Just popping in 
|
Sorry, not yet. After aligning the FileInfoBlock to longword boundry, the version started to show signs of life. Still not much yet:
- It does not use the file Makefile by default, you have to use -f Makefile - The implicit rules are behaving weird.
I did not manage to execute a Makefile fully. make clean seem to work, but nothing much more.
|
|
|
|
|
|
Re: Gnu Make drops AmigaOS support
|
Posted on: 2022/11/5 12:50
#135
|
Just popping in 
|
That would be great. This is the only thing that it does at the moment:
4. > RAM Disk:Shared/Sources/RKM_Libraries/Chapter1 > Work:Projects/make
make: *** No targets specified and no makefile found. Stop.
4. > RAM Disk:Shared/Sources/RKM_Libraries/Chapter1 > Work:Projects/make -f Makefile
make: *** No rule to make target 'easy', needed by 'all'. Stop.
4. > RAM Disk:Shared/Sources/RKM_Libraries/Chapter1 > dir
easy.c easy.c.info easy.s easy.s.info lmkfile lmkfile.info Makefile Makefile.vbcc
4. > RAM Disk:Shared/Sources/RKM_Libraries/Chapter1 > Work:Projects/make -v
GNU Make 4.4
Built for powerpc-unknown-amigaos
Copyright (C) 1988-2022 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
|
|
|
|
|
|
Re: Gnu Make drops AmigaOS support
|
Posted on: 2022/11/5 9:50
#136
|
Just popping in 
|
This my current state: https://github.com/josefwegner/make/tree/amigaosIt needs hacking the Makefile to compile and link amiga.c. I will work on this issue later. Maybe we can get it to work without running configure. This would also allow me to build it with SAS/C. Although it compiles, it does not do much yet. Most likely we need to rewrite the Amiga specific parts in src/amiga.c to use the new AmigaOS 4.x methods.
|
|
|
|
|
|
Re: Gnu Make drops AmigaOS support
|
Posted on: 2022/11/5 9:01
#137
|
Just popping in 
|
I guess you are talking about Bartman's excellent Visual Studio plugin. Yes, it contains make, gcc and gdb, but they are not native versions, but run on Linux, Mac, or Windows.
We are talking about a native make version; one you can run on your Classic or NG Amiga.
|
|
|
|
|
|
Re: Gnu Make drops AmigaOS support
|
Posted on: 2022/11/4 18:41
#138
|
Just popping in 
|
@walkero:
I guess the first decision is if we want to keep support for AmigaOS < 4.0 (= classic AmigaOS).
Trying to keep AmigaOS 3.x compatible, I do not see a lot of needed changes to the code.
But if you want to scrap support for older OS versions, we might want to rewrite major parts to be closer to the other OSes. But in this case I am not in a position to help as I lack inside in major parts of AmigaOS 4.x inner workings.
|
|
|
|
|
|
Re: Gnu Make drops AmigaOS support
|
Posted on: 2022/11/4 17:01
#139
|
Just popping in 
|
Well, a bit. Do not expect wonders, though. Right now I hit the limits of my knowledge. Make is doing something strange with replacing functions with defines. GCC really does not like this. Has anybody any idea how I have to update these to make them working?
#if defined(VMS) || defined(_AMIGA) || defined(__MSDOS__)
#define check_io_state() (IO_STDIN_OK|IO_STDOUT_OK|IO_STDERR_OK)
#define fd_inherit(_i) (0)
#define fd_noinherit(_i) (0)
#define fd_set_append(_i) (void)(0)
#define os_anontmp() (-1)
#else
It defenitly does not like the first set of brackets (the one of the function).
|
|
|
|
|
|
Re: Gnu Make drops AmigaOS support
|
Posted on: 2022/11/4 15:44
#140
|
Just popping in 
|
Okay, and the next issue is that make assumes that Amiga compilers define _AMIGA instead of __AMIGA (not the two underscores). Use this configure command to activate the Amiga parts in code (executed in abc-shell):
> CFLAGS="-D_AMIGA -D__USE_INLINE__" ./configure
This fails later, though:
gcc -DHAVE_CONFIG_H -Isrc -I./src -Ilib -I./lib -DLIBDIR=\"/usr/local/lib\" -DLOCALEDIR=\"/usr/local/share/locale\" -D_AMIGA -D__USE_INLINE__ -MT src/function.o -MD -MP -MF $depbase.Tpo -c -o src/function.o src/function.c &&\
mv -f $depbase.Tpo $depbase.Po
src/function.c: In function 'func_shell_base':
src/function.c:2040:3: error: 'command_argv' undeclared (first use in this function)
2040 | command_argv = construct_command_argv (argv[0], NULL, NULL, 0,
| ^~~~~~~~~~~~
src/function.c:2040:3: note: each undeclared identifier is reported only once for each function it appears in
src/function.c:2068:3: warning: implicit declaration of function 'Execute'; did you mean 'MyExecute'? [-Wimplicit-function-declaration]
2068 | Execute (buffer, NULL, child_stdout);
| ^~~~~~~
| MyExecute
gmake[1]: *** [src/function.o] Error 1
gmake[1]: Leaving directory `/RAM Disk/Shared/Sources/make-4.4'
gmake: *** [all-recursive] Error 1
|
|
|
|
|
|