Jump to content

dossakab

Members
  • Posts

    12
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Ok, thanks, I've just launched mandelbrot example, and it works fine. But now I trying another example(bubbles), and I have this message: Linking .build/hello_world /tmp/cci1nNng.ltrans0.ltrans.o: In function `initialize': <artificial>:(.text+0x1b64): undefined reference to `sinf' /tmp/cci1nNng.ltrans0.ltrans.o: In function `matrix': <artificial>:(.text+0x1c22): undefined reference to `sqrt' collect2: error: ld returned 1 exit status ../resources/ugfx/tools/gmake_scripts/compiler_gcc.mk:282: recipe for target '.build/hello_world' failed make: *** [.build/hello_world] Error 1
  2. So where I can find list of all supported color systems?
  3. Hello everybody, where i can set framebuffer bitness? I got this error: GDISP Framebuffer: The display is 8 not 32 bits per pixel
  4. I fixed this with simple rebuild.... Try make clean, maybe it will help
  5. Ohh, I wrote it too early) When I've tried launch this app on device, I've receive this message: # ./hello_world ./hello_world: /lib/libc.so.6: version `GLIBC_2.17' not found (required by ./hello_world) Where is the problem - at the host, or at the device?
  6. Strange thing, I've just re-downloaded source and it have compiled successfully! Thank you!
  7. Sure. This is the log from terminal log
  8. @Joel Bodenmann, thank you! That works. But I still have an error:
  9. Hello everybody. I'm trying to build uFGX for ARM device. I have 2 folders - hello_world(my project) with this simple makefile: # Possible Targets: all clean Debug cleanDebug Release cleanRelease ############################################################################################## # Settings # # General settings # See $(GFXLIB)/tools/gmake_scripts/readme.txt for the list of variables OPT_OS = linux OPT_LINK_OPTIMIZE = yes # Change this next setting (or add the explicit compiler flags) if you are not compiling for x86 linux OPT_CPU = armv6 # uGFX settings # See $(GFXLIB)/tools/gmake_scripts/library_ugfx.mk for the list of variables GFXLIB = ~/Documents/projects/resources/ugfx GFXBOARD = Linux-Framebuffer GFXDEMO = applications/mandelbrot # Linux settings # See $(GFXLIB)/tools/gmake_scripts/os_linux.mk for the list of variables ############################################################################################## # Set these for your project # ARCH = arm-linux-gnueabi- SRCFLAGS = CFLAGS = CXXFLAGS = ASFLAGS = LDFLAGS = SRC = OBJS = DEFS = LIBS = INCPATH = LIBPATH = ############################################################################################## # These should be at the end # include $(GFXLIB)/tools/gmake_scripts/library_ugfx.mk include $(GFXLIB)/tools/gmake_scripts/os_$(OPT_OS).mk include $(GFXLIB)/tools/gmake_scripts/compiler_gcc.mk # *** EOF *** and resources/ugfx(source codes of ugfx). When I've started building, I've got this message(in the attachments). So what is it? Where this file needs to be?
×
×
  • Create New...