I don't think so. It used locally stored language pack and the engine is local. I had it reading books to me.Interesting. But does Ivona not need an internet connection at all times ?
Aha, I will have to look into that. Found something :
When i search about ivona and android, google blocks the playstore links due to not being available yet in my country. Interesting.
At the moment i am having a speed and refresh course linux.
I am still gathering information about how and where all the header files and libraries are stored.
My guess is that once i got it all installed on the raspberry pi, i can just copy it to my pc and compile on my pc.
There is a lot of cross compiling support for the raspberry pi on ubuntu. Once i have read about that, i hope i have enough information to get it all to compile (under windows as well).
# Automatically generated by W-ARM for RPI !
# Do not edit this file with an editor that replaces tabs with spaces !
################################################################################
ECHO = echo.exe
CP = cp.exe
CC = arm-linux-gnueabihf-g++.exe
AS = arm-linux-gnueabihf-g++.exe -x assembler-with-cpp
CREATE_OUTPUT_FILE = arm-linux-gnueabihf-g++ -o RPITEST
SRC = ./src/file2.c ./src/main.c
ASRC =
USR_INC_DIR = ./inc
USR_LIB_DIR = ./lib
################################################################################
# These are the object files of external libraries.
LIBOBJS =
# Library directory with LD switches.
LIBDIR = -L USR_LIB_DIR
# substitution reference OBJS = every module name, replace s with o and every c with o.
OBJS = $(ASRC:.s=.o) $(SRC:.c=.o)
### compiler flags.
# architecture optimizations
MCU_FLAGS = -mcpu=cortex-a53
# compiler optimisation level
OPT =-O1
# debugger
DBGGR =
# floating point unit
FLPU =-mfpu=vfpv4
# compiler flags combined into a single variable.
CP_FLAGS = $(DBGGR) $(FLPU) $(OPT) $(MCU_FLAGS) -Wall -g -Wa,-adhln=$(<:.c=.lst)
# assembler flags combined into a single variable.
AS_FLAGS = $(OPT) $(MCU_FLAGS) -Wa
# linker flags.
LD_FLAGS = $(MCU_FLAGS) -lgcc -lrt -Wl,-Map=./output/RPITEST.map,--cref $(LIB_DIR)
# Eye candy.
begin:
@$(ECHO)
@$(ECHO) ---------------- begin ----------------
@$(ECHO)
finished:
@$(ECHO)
@$(ECHO) Errors none.
@$(ECHO)
@$(ECHO) Output format = Raspbian executable
@$(ECHO)
@$(ECHO) Project name = RPITEST
@$(ECHO)
end:
@$(ECHO)
@$(ECHO) ---------------- end ----------------
@$(ECHO)
clean_message:
@$(ECHO)
@$(ECHO) Cleaning directories of current project : RPITEST
@$(ECHO)
# Display compiler version information.
gccversion:
@$(CC) --version
#Execute from here.
all: begin gccversion create move_files finished end
#copy files to new destination.
move_files:
@$(CP) ./src/*.lst ./list/
@$(CP) ./src/*.o ./object/
@$(CP) RPITEST ./output/
@-rm -f ./src/*.lst
@-rm -f ./src/*.o
@-rm -f RPITEST
# create output file.
#Make searches for pattern rules first.
create: $(OBJS)
$(CREATE_OUTPUT_FILE) $(LD_FLAGS) $(OBJS) $(LIBOBJS)
# This pattern rule is performed for every single c module. One object file for every c module.
%.o : %.c
$(CC) -c $(CP_FLAGS) -I $(USR_INC_DIR) $< -o $@
# This pattern rule is performed for every single assembly module. One object file for every assembly module.
%.o : %.s
$(AS) -c $(AS_FLAGS) -I $(USR_INC_DIR) $< -o $@
clean: begin gccversion deletefiles clean_message end
deletefiles:
@-rm -f $(OBJS)
@-rm -f $(SRC:.c=.c.bak)
@-rm -f $(SRC:.c=.lst)
@-rm -f $(ASRC:.s=.s.bak)
@-rm -f $(ASRC:.s=.lst)
@-rm -fR .dep
@-rm -f ./output/*.map
@-rm -f ./output/RPITEST
@-rm -f ./list/*.lst
@-rm -f ./object/*.o
# Listing of phony targets.
.PHONY : all begin finish end move_files clean_message sizebefore sizeafter gccversion build elf hex lss sym clean clean_list program
# *** EOF ***
No clue sorry.Hey sdifox, I am trying to write a gtk example program.
I am chewing through the dependencies, fixing them as i go but there is one file that does not exist in my ./usr directory and yet it is mentioned often.
In the pango directory there is a pango-font.h missing. the other *.h files in the pango directory include it but it is not present. A search command for the file also gives 0 result. I did install all developer files as needed.
Have you ever encountered such an error ?
I googled for it and there does seem to exist such a file at red hat. Maybe i should just copy that file ?
libgtk-x11-2.0.so: Filesystem does not support symbolic links
e:/rbpi/sysgcc/bin/../lib/gcc/arm-linux-gnueabihf/4.9/../../../../arm-linux-gnueabihf/bin/ld.exe: cannot find -l./lib/gtk-x11-2.0