Login
Username:

Password:

Remember me



Lost Password?

Register now!

Sections

Who's Online
99 user(s) are online (62 user(s) are browsing Forums)

Members: 1
Guests: 98

joerg, more...

Headlines

Forum Index


Board index » All Posts (SinanSam460)




Re: SDL2
Not too shy to talk
Not too shy to talk


@Capehill

Thanks. I have found all other dependecies on OS4Depot and copied to SDK directory on gcc10 (CygWin64 cross compiler)

ppc-amigaos-g++ -athread=native 06_extension_libraries_and_loading_other_image_formats.cpp -o 06_SDL -ljpeg -lpng -ltiff -lwebp -lz -lSDL2 -lSDL2_image

But I still get the same errors...



Sinan - AmigaOS4 Beta-Tester
- AmigaOne X5000
- AmigaOne A1222
- Sam460ex
Go to top


Re: SDL2
Not too shy to talk
Not too shy to talk


@all

I am following multi-platform SDL2 tutorials on this page. I was able to compile and run first 5 examples. However I have a difficulty with SDL2_image.

The example basically loads a PNG file and displays on the screen.

I am compiling the examples with this following command
ppc-amigaos-g++ -w -athread=native 06_extension_libraries_and_loading_other_image_formats.cpp -o 06_SDL -lSDL2_image -lSDL2

However I get following errors:
$ ppc-amigaos-g++ -w -athread=native 06_extension_libraries_and_loading_other_image_formats.cpp -o 06_SDL -lSDL2_image -lSDL2
/usr/local/amiga/ppc-amigaos/SDK/local/newlib/lib/libSDL2_image.a(IMG_jpg.o): In function `IMG_SaveJPG_RW_jpeglib':
/home/Michael/SDL2_image-2.0.5/IMG_jpg.c:499: undefined reference to `jpeg_std_error'
/home/Michael/SDL2_image-2.0.5/IMG_jpg.c:503: undefined reference to `jpeg_CreateCompress'
/home/Michael/SDL2_image-2.0.5/IMG_jpg.c:511: undefined reference to `jpeg_set_defaults'
/home/Michael/SDL2_image-2.0.5/IMG_jpg.c:512: undefined reference to `jpeg_set_quality'
/home/Michael/SDL2_image-2.0.5/IMG_jpg.c:513: undefined reference to `jpeg_start_compress'
/home/Michael/SDL2_image-2.0.5/IMG_jpg.c:518: undefined reference to `jpeg_write_scanlines'
/home/Michael/SDL2_image-2.0.5/IMG_jpg.c:521: undefined reference to `jpeg_finish_compress'
/home/Michael/SDL2_image-2.0.5/IMG_jpg.c:522: undefined reference to `jpeg_destroy_compress'
/home/Michael/SDL2_image-2.0.5/IMG_jpg.c:499: undefined reference to `jpeg_std_error'
/home/Michael/SDL2_image-2.0.5/IMG_jpg.c:503: undefined reference to `jpeg_CreateCompress'
/usr/local/amiga/ppc-amigaos/SDK/local/newlib/lib/libSDL2_image.a(IMG_jpg.o): In function `IMG_LoadJPG_RW':
/home/Michael/SDL2_image-2.0.5/IMG_jpg.c:339: undefined reference to `jpeg_std_error'
/home/Michael/SDL2_image-2.0.5/IMG_jpg.c:353: undefined reference to `jpeg_CreateDecompress'
/usr/local/amiga/ppc-amigaos/SDK/local/newlib/lib/libSDL2_image.a(IMG_jpg.o): In function `jpeg_SDL_RW_src':
/home/Michael/SDL2_image-2.0.5/IMG_jpg.c:296: undefined reference to `jpeg_resync_to_restart'
/home/Michael/SDL2_image-2.0.5/IMG_jpg.c:296: undefined reference to `jpeg_resync_to_restart'
/usr/local/amiga/ppc-amigaos/SDK/local/newlib/lib/libSDL2_image.a(IMG_jpg.o): In function `IMG_LoadJPG_RW':
/home/Michael/SDL2_image-2.0.5/IMG_jpg.c:355: undefined reference to `jpeg_read_header'
/home/Michael/SDL2_image-2.0.5/IMG_jpg.c:381: undefined reference to `jpeg_calc_output_dimensions'
/home/Michael/SDL2_image-2.0.5/IMG_jpg.c:402: undefined reference to `jpeg_start_decompress'
/home/Michael/SDL2_image-2.0.5/IMG_jpg.c:406: undefined reference to `jpeg_read_scanlines'
/home/Michael/SDL2_image-2.0.5/IMG_jpg.c:408: undefined reference to `jpeg_finish_decompress'
/home/Michael/SDL2_image-2.0.5/IMG_jpg.c:409: undefined reference to `jpeg_destroy_decompress'
/home/Michael/SDL2_image-2.0.5/IMG_jpg.c:344: undefined reference to `jpeg_destroy_decompress'
/home/Michael/SDL2_image-2.0.5/IMG_jpg.c:361: undefined reference to `jpeg_calc_output_dimensions'
/home/Michael/SDL2_image-2.0.5/IMG_jpg.c:395: undefined reference to `jpeg_destroy_decompress'
/usr/local/amiga/ppc-amigaos/SDK/local/newlib/lib/libSDL2_image.a(IMG_png.o): In function `png_read_data':
/home/Michael/SDL2_image-2.0.5/IMG_png.c:246: undefined reference to `png_get_io_ptr'
/usr/local/amiga/ppc-amigaos/SDK/local/newlib/lib/libSDL2_image.a(IMG_png.o): In function `png_write_data':
/home/Michael/SDL2_image-2.0.5/IMG_png.c:526: undefined reference to `png_get_io_ptr'
/usr/local/amiga/ppc-amigaos/SDK/local/newlib/lib/libSDL2_image.a(IMG_png.o): In function `IMG_SavePNG_RW_libpng':
/home/Michael/SDL2_image-2.0.5/IMG_png.c:544: undefined reference to `png_create_write_struct'
/home/Michael/SDL2_image-2.0.5/IMG_png.c:550: undefined reference to `png_create_info_struct'
/home/Michael/SDL2_image-2.0.5/IMG_png.c:558: undefined reference to `png_set_longjmp_fn'
/home/Michael/SDL2_image-2.0.5/IMG_png.c:586: undefined reference to `png_set_PLTE'
/home/Michael/SDL2_image-2.0.5/IMG_png.c:593: undefined reference to `png_set_write_fn'
/home/Michael/SDL2_image-2.0.5/IMG_png.c:595: undefined reference to `png_set_IHDR'
/home/Michael/SDL2_image-2.0.5/IMG_png.c:613: undefined reference to `png_set_rows'
/home/Michael/SDL2_image-2.0.5/IMG_png.c:614: undefined reference to `png_write_png'
/home/Michael/SDL2_image-2.0.5/IMG_png.c:621: undefined reference to `png_destroy_write_struct'
/home/Michael/SDL2_image-2.0.5/IMG_png.c:552: undefined reference to `png_destroy_write_struct'
/home/Michael/SDL2_image-2.0.5/IMG_png.c:564: undefined reference to `png_destroy_write_struct'
/home/Michael/SDL2_image-2.0.5/IMG_png.c:605: undefined reference to `png_destroy_write_struct'
/home/Michael/SDL2_image-2.0.5/IMG_png.c:577: undefined reference to `png_destroy_write_struct'
/usr/local/amiga/ppc-amigaos/SDK/local/newlib/lib/libSDL2_image.a(IMG_png.o): In function `IMG_LoadPNG_RW':
/home/Michael/SDL2_image-2.0.5/IMG_png.c:283: undefined reference to `png_create_read_struct'
/home/Michael/SDL2_image-2.0.5/IMG_png.c:291: undefined reference to `png_create_info_struct'
/home/Michael/SDL2_image-2.0.5/IMG_png.c:304: undefined reference to `png_set_longjmp_fn'
/home/Michael/SDL2_image-2.0.5/IMG_png.c:458: undefined reference to `png_destroy_read_struct'
/home/Michael/SDL2_image-2.0.5/IMG_png.c:314: undefined reference to `png_set_read_fn'
/home/Michael/SDL2_image-2.0.5/IMG_png.c:317: undefined reference to `png_read_info'
/home/Michael/SDL2_image-2.0.5/IMG_png.c:318: undefined reference to `png_get_IHDR'
/home/Michael/SDL2_image-2.0.5/IMG_png.c:322: undefined reference to `png_set_strip_16'
/home/Michael/SDL2_image-2.0.5/IMG_png.c:325: undefined reference to `png_set_interlace_handling'
/home/Michael/SDL2_image-2.0.5/IMG_png.c:330: undefined reference to `png_set_packing'
/home/Michael/SDL2_image-2.0.5/IMG_png.c:334: undefined reference to `png_set_expand'
/home/Michael/SDL2_image-2.0.5/IMG_png.c:339: undefined reference to `png_get_valid'
/home/Michael/SDL2_image-2.0.5/IMG_png.c:369: undefined reference to `png_set_gray_to_rgb'
/home/Michael/SDL2_image-2.0.5/IMG_png.c:371: undefined reference to `png_read_update_info'
/home/Michael/SDL2_image-2.0.5/IMG_png.c:373: undefined reference to `png_get_IHDR'
/home/Michael/SDL2_image-2.0.5/IMG_png.c:378: undefined reference to `png_get_channels'
/home/Michael/SDL2_image-2.0.5/IMG_png.c:423: undefined reference to `png_read_image'
/home/Michael/SDL2_image-2.0.5/IMG_png.c:438: undefined reference to `png_get_PLTE'
/home/Michael/SDL2_image-2.0.5/IMG_png.c:342: undefined reference to `png_get_tRNS'
/home/Michael/SDL2_image-2.0.5/IMG_png.c:361: undefined reference to `png_set_expand'
/usr/local/amiga/ppc-amigaos/SDK/local/newlib/lib/libSDL2_image.a(IMG_tif.o): In function `IMG_LoadTIF_RW':
/home/Michael/SDL2_image-2.0.5/IMG_tif.c:179: undefined reference to `TIFFClientOpen'
/home/Michael/SDL2_image-2.0.5/IMG_tif.c:185: undefined reference to `TIFFGetField'
/home/Michael/SDL2_image-2.0.5/IMG_tif.c:186: undefined reference to `TIFFGetField'
/home/Michael/SDL2_image-2.0.5/IMG_tif.c:197: undefined reference to `TIFFReadRGBAImageOriented'
/home/Michael/SDL2_image-2.0.5/IMG_tif.c:210: undefined reference to `TIFFClose'
/home/Michael/SDL2_image-2.0.5/IMG_tif.c:200: undefined reference to `TIFFClose'
/usr/local/amiga/ppc-amigaos/SDK/local/newlib/lib/libSDL2_image.a(IMG_webp.o): In function `IMG_LoadWEBP_RW':
/home/Michael/SDL2_image-2.0.5/IMG_webp.c:201: undefined reference to `WebPGetFeaturesInternal'
/home/Michael/SDL2_image-2.0.5/IMG_webp.c:232: undefined reference to `WebPDecodeRGBAInto'
/home/Michael/SDL2_image-2.0.5/IMG_webp.c:234: undefined reference to `WebPDecodeRGBInto'
collect2: error: ld returned 1 exit status


Sinan - AmigaOS4 Beta-Tester
- AmigaOne X5000
- AmigaOne A1222
- Sam460ex
Go to top


PowerPC Architecture -Nasa Perseverance Rover
Not too shy to talk
Not too shy to talk


I didn't know that Nasa Perseverance CPU is based on PowerPC 750 Architecture...

Tech Specs
Processor
Radiation-hardened central processor with PowerPC 750 Architecture: a BAE RAD 750
Operates at up to 200 megahertz speed, 10 times the speed in Mars rovers Spirit and Opportunity's computers

https://mars.nasa.gov/mars2020/spacecraft/rover/brains/

Sinan - AmigaOS4 Beta-Tester
- AmigaOne X5000
- AmigaOne A1222
- Sam460ex
Go to top


python3.8 AmigaOS4 in development
Not too shy to talk
Not too shy to talk


@all

Amigasoft.net shared a screenshot of Python3.8 for AmigaOS4 on his facebook page.

https://ibb.co/64dCfmK


Sinan - AmigaOS4 Beta-Tester
- AmigaOne X5000
- AmigaOne A1222
- Sam460ex
Go to top


Re: PageStream 5 (PPC) Working with Latest OS4.1 Update
Not too shy to talk
Not too shy to talk


-


Edited by SinanSam460 on 2021/2/10 8:48:09
Sinan - AmigaOS4 Beta-Tester
- AmigaOne X5000
- AmigaOne A1222
- Sam460ex
Go to top


Re: PageStream 5 (PPC) Working with Latest OS4.1 Update
Not too shy to talk
Not too shy to talk


Wouldn't it be better to organize a port of Scribus to AmigaOS4 / MorphOS ?

(I saw that DiscreetFX tried to organize a bounty on AW.net 8 years ago)

Sinan - AmigaOS4 Beta-Tester
- AmigaOne X5000
- AmigaOne A1222
- Sam460ex
Go to top


Re: X5000 not booting
Not too shy to talk
Not too shy to talk


@DStastny

Are you using a beta UBoot ?

U-Boot aeon-2020-08-09 (Aug 09 2020 - 02:21:37)

Sinan - AmigaOS4 Beta-Tester
- AmigaOne X5000
- AmigaOne A1222
- Sam460ex
Go to top


Re: How to build AmigaOS4 cross-compiler (Binutils 2.23.2 & GCC 8.3.0) on CYGWIN
Not too shy to talk
Not too shy to talk


@kas1e

Thanks

I am getting this error when compiling new gcc

/amiga/adtools/gcc/repo/libstdc++-v3/src/c++17/fs_ops.cc:1211:40: error: ‘not_supported’ is not a member of ‘std::errc’
1211 | ec = std::make_error_code(std::errc::not_supported);
| ^~~~~~~~~~~~~
make[10]: *** [Makefile:570: fs_ops.lo] Error 1
make[10]: Leaving directory '/amiga/adtools/native-build/gcc-cross-build-10.1.0/ppc-amigaos/clib2/libstdc++-v3/src/c++17'
make[9]: *** [Makefile:731: all-recursive] Error 1
make[9]: Leaving directory '/amiga/adtools/native-build/gcc-cross-build-10.1.0/ppc-amigaos/clib2/libstdc++-v3/src'
make[8]: *** [Makefile:563: all-recursive] Error 1
make[8]: Leaving directory '/amiga/adtools/native-build/gcc-cross-build-10.1.0/ppc-amigaos/clib2/libstdc++-v3'
make[7]: *** [Makefile:488: all] Error 2
make[7]: Leaving directory '/amiga/adtools/native-build/gcc-cross-build-10.1.0/ppc-amigaos/clib2/libstdc++-v3'
make[6]: *** [Makefile:856: multi-do] Error 1
make[6]: Leaving directory '/amiga/adtools/native-build/gcc-cross-build-10.1.0/ppc-amigaos/libstdc++-v3'
make[5]: *** [Makefile:824: all-multi] Error 2
make[5]: Leaving directory '/amiga/adtools/native-build/gcc-cross-build-10.1.0/ppc-amigaos/libstdc++-v3'
make[4]: *** [Makefile:563: all-recursive] Error 1
make[4]: Leaving directory '/amiga/adtools/native-build/gcc-cross-build-10.1.0/ppc-amigaos/libstdc++-v3'
make[3]: *** [Makefile:488: all] Error 2
make[3]: Leaving directory '/amiga/adtools/native-build/gcc-cross-build-10.1.0/ppc-amigaos/libstdc++-v3'
make[2]: *** [Makefile:11349: all-target-libstdc++-v3] Error 2
make[2]: Leaving directory '/amiga/adtools/native-build/gcc-cross-build-10.1.0'
make[1]: *** [Makefile:960: all] Error 2
make[1]: Leaving directory '/amiga/adtools/native-build/gcc-cross-build-10.1.0'
make: *** [makefile:192: gcc-cross-done-10.1.0] Error 2
make: Leaving directory '/amiga/adtools/native-build'

Sinan - AmigaOS4 Beta-Tester
- AmigaOne X5000
- AmigaOne A1222
- Sam460ex
Go to top


Re: How to build AmigaOS4 cross-compiler (Binutils 2.23.2 & GCC 8.3.0) on CYGWIN
Not too shy to talk
Not too shy to talk


@kas1e

How do we update gcc 10 and latest updates on CygWin64 ?


Sinan - AmigaOS4 Beta-Tester
- AmigaOne X5000
- AmigaOne A1222
- Sam460ex
Go to top


Re: Updater tool: latest releases and updates
Not too shy to talk
Not too shy to talk


@kas1e

With 53.70 problem is solved on my Sam460.

For A1222, I have to use debug.kernel so that Updater works without problems. With non debug kernel on A1222, I get crashes related to AmiSphere server.

Sinan - AmigaOS4 Beta-Tester
- AmigaOne X5000
- AmigaOne A1222
- Sam460ex
Go to top


Re: Updater locking up
Not too shy to talk
Not too shy to talk


@all

Reported Updater lockups on MantisBT (A-Eon's bugtracker)
I hope issue is solved by the author..

Sinan - AmigaOS4 Beta-Tester
- AmigaOne X5000
- AmigaOne A1222
- Sam460ex
Go to top


Re: Emotion video player 1.9 via AmiUpdate
Not too shy to talk
Not too shy to talk


@ktadd

I guess it is not possible to play 1080p videos until va.library is available and graphic card support is announced.


Sinan - AmigaOS4 Beta-Tester
- AmigaOne X5000
- AmigaOne A1222
- Sam460ex
Go to top


Re: X5000 No Longer Booting OS4!
Not too shy to talk
Not too shy to talk


@AcillClassics

Can you try without the HL-DT DVD-RAM ?

Sinan - AmigaOS4 Beta-Tester
- AmigaOne X5000
- AmigaOne A1222
- Sam460ex
Go to top


Re: Screenmodes Gone after System Reinstall
Not too shy to talk
Not too shy to talk


@PEB

Can you copy RadeonHD (registered A-Eon versions) kickstart modules to SYS:Kickstart/ manually ?

Sinan - AmigaOS4 Beta-Tester
- AmigaOne X5000
- AmigaOne A1222
- Sam460ex
Go to top


Re: OS4 UPDAAAATEE !!! BANANA !!
Not too shy to talk
Not too shy to talk


@all

Do you have DDR_Boost enabled in your Sam460 UBoot settings ?


Sinan - AmigaOS4 Beta-Tester
- AmigaOne X5000
- AmigaOne A1222
- Sam460ex
Go to top


Re: Do we have on amigaos and app to read/write ISO files ?
Not too shy to talk
Not too shy to talk


@kas1e

I used PowerISO on PC

https://www.poweriso.com/tutorials/edit-iso-file.htm

Created custom A1222/X5000 ISOs as a backup

Sinan - AmigaOS4 Beta-Tester
- AmigaOne X5000
- AmigaOne A1222
- Sam460ex
Go to top


Re: X5000 MCU Led Blinking - Not Booting
Not too shy to talk
Not too shy to talk


@Gregor

VDD_CA = Core Group A (core 0) supply voltage.

If I am not mistaken 1st core of the P5020 has a voltage problem..

I can't find any reference to Xorro, it must be special to this design.

I have informed AmigaKit, but got no reply yet.

I wish AEON can supply us a repair manual for X5000. As the boards go older, more people will need it perhaps.

Maybe A-Eon can commission Acube as a repair centre in the near future ?

Sinan - AmigaOS4 Beta-Tester
- AmigaOne X5000
- AmigaOne A1222
- Sam460ex
Go to top


Re: X5000 MCU Led Blinking - Not Booting
Not too shy to talk
Not too shy to talk


@Spectre660

I hooked up a USB-TTL cable to one of X5000 inner serial port, I received some output.
It gives two errors..



Cyrus Plus
MCU Firmware Version 2.1
Hardware Version 2.1
CPLD Version 2.0
CPLD build time: 10:10:10
CPLD build date: 2014-05-27
MCU build time: 10:34:25
MCU build date: May 30 2014
SYS CLK frequency 133MHz
Dual Ethernet devices fitted.
P5020 processor fitted

>> Power up request detected
Enabled PS_ON
ERROR: vdd_ca out of range. Expected 1.10, got 0.86
WARNING: Supplies Turned off. Shutting down.
ATX supply turned off.
ERROR: vdd_1v0_xorro out of range. Expected 1.00, got -0.00
WARNING: Supplies Turned off. Shutting down.
ATX supply turned off.

- vcc_cpld: 3.33
- vdd_3v3_xorro: 1.32
- vdd_1v0_idt: 0.00
- vdd_1v0_xorro: -0.00
- vdd_3v3: 1.09
- vdd_2v5: 0.08
- vdd_1v2_eth: 0.32
- vdd_pl: -0.00
- vdd_ca: -0.00
- vdd_cb: -0.00
- vdd_ddr3_io: 0.41
- vdd_xvdd_fl: 0.14

....
....

ERROR: CLKGen1 failed to configure!!
Initializing clocks failed please re-power the board.
WARNING: Supplies Turned off. Shutting down.
ATX supply turned off.

Sinan - AmigaOS4 Beta-Tester
- AmigaOne X5000
- AmigaOne A1222
- Sam460ex
Go to top


Re: X5000 MCU Led Blinking - Not Booting
Not too shy to talk
Not too shy to talk


@Spectre660

I am one of the early adapters (my name is printed on the back side of X5000..). I also use a UPS and powersupply is ok.

I have informed Matthew and opened a ticket on AmigaKit website.

My X5000's problem is similar to your A1222.

(I also have A1222, I hope it does not die,too)

I hope I get some feedback from A-Eon/AmigaKit soon. But under Covid restricitons, economical troubles e.t.c, I fear that solving that will be not easy :(


Sinan - AmigaOS4 Beta-Tester
- AmigaOne X5000
- AmigaOne A1222
- Sam460ex
Go to top


Re: X5000 MCU Led Blinking - Not Booting
Not too shy to talk
Not too shy to talk


@Spectre660

I opened a ticket with AmigaKit.
As a last try, I will try with a new RAM module.

What happened to your X5000 ?

Sinan - AmigaOS4 Beta-Tester
- AmigaOne X5000
- AmigaOne A1222
- Sam460ex
Go to top



TopTop
« 1 ... 13 14 15 (16) 17 18 19 ... 22 »




Powered by XOOPS 2.0 © 2001-2023 The XOOPS Project