motofan logo
> 

C++ Develop App

croccio
сообщение 21.6.2010, 21:36


Мастер
****

Группа: Пользователи
Сообщений: 254
Регистрация: 27.1.2008
Пользователь №: 161 521
Модель телефона: L7 Slvr, c350

Рейтинг: 11



i' trying to develop app in c++. i downloaded E8GCC and E8SDK. i edit file env.sh then i try to compile showRadio but i've this error:
Код
arm-linux-gnueabi-g++ -c -pipe -DQWS -fno-exceptions -fno-rtti -Wall -W -O3 -DNO_DEBUG -I/home/antonio/Scrivania/E8SDK//include -o showRadio.o showRadio.cpp
make: execvp: arm-linux-gnueabi-g++: Permesso negato
make: *** [showRadio.o] Errore 127


wht is??
can anyone do example for create "windows" and position object in the window???

EXL: Share full log of their actions, beginning with the launch environment

Цитата(EXL @ 22.6.2010, 7:49) *

Share full log of their actions, beginning with the launch environment

env.sh
Код
#!/bin/bash

# -here you should put your own E8SDK path.
export QTDIR=/home/antonio/Scrivania/E8SDK/
export TMAKEPATH=/home/antonio/Scrivania/E8SDK/tmakelib/pwd/arm-linux-g++/
export PATH=/home/antonio/Scrivania:/e8-gcc/bin:/sbin:/usr/sbin:/usr/local/sbin:/root/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/opt/kde3/bin:/usr/lib/jvm/jre/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin


for compile app i do new sh file i called it make_app.sh
Код
. /home/antonio/Scrivania/E8SDK/env.sh
cd /home/antonio/Scrivania/E8SDK/showRadio
progen -o showRadio.pro
tmake showRadio.pro -o Makefile
make

then from console i do
Код
/home/antonio/Scrivania/E8SDK/make_app.sh

the it show this
Код
arm-linux-gnueabi-g++ -c -pipe -DQWS -fno-exceptions -fno-rtti -Wall -W -O3 -DNO_DEBUG -I/home/antonio/Scrivania/E8SDK//include -o showRadio.o showRadio.cpp
make: execvp: arm-linux-gnueabi-g++: Permesso negato
make: *** [text.o] Errore 127


can u tell me what file i post??? or app that i can try??? and how can i create new form (window) where i put object, as textbox, label... and how can i control key pression??
in the foldere where there is the app code there isn't showRadio.o

EXL: Try to do so:
Код

cd /home/antonio/Scrivania/E8SDK/
. env.sh
cd /home/antonio/Scrivania/E8SDK/showRadio
progen -o showRadio.pro
chmod +x /Path_to_progen/progen
chmod +x /Path_to_tmake/tmake
progen -o showRadio.pro
tmake showRadio.pro -o Makefile

Coming Makefile fix thus the following strings:
Код

CC    =    arm-linux-gcc
CXX    =    arm-linux-g++


Then execute:

Код

make


And do check the correctness of all paths...


it do nothing

(22.6.2010, 13:43):
i get this
Код
arm-linux-gnueabi-g++ -c -pipe -DQWS -fno-exceptions -fno-rtti -Wall -W -O3 -DNO_DEBUG -I/home/antonio/Scrivania/E8SDK//include -o showRadio.o showRadio.cpp
make: execvp: arm-linux-gnueabi-g++: Permesso negato
make: *** [showRadio.o] Errore 127


EXL: arm-linux-gnueabi-g++ in the Makefile should be replaced by on arm-linux-g++ !


i edit the make file in showRadio folder, it is or no??

EXL: Yeah!

when i run make_app.sh the make file in showRadio folder change automatically!

can u upload your E8SDK and e8-gcc folder so i use that?? can u tell me in what folder i copy them???

if u don't belive i post a video screen soon

EXL: From make_app.sh remove next line - make

New make_app.sh:

Код
. /home/antonio/Scrivania/E8SDK/env.sh
cd /home/antonio/Scrivania/E8SDK/showRadio
progen -o showRadio.pro
tmake showRadio.pro -o Makefile


then correct Makefile
and run in console the following:

Код
cd /home/antonio/Scrivania/E8SDK/showRadio
make


Сообщение отредактировал EXL - 23.6.2010, 1:21
Юзер вышелВ друзьяВизиткаП/Я
К началу страницы
+Ответить
 
Ответ в темуСоздание новой темы
Ответов
rock88
сообщение 12.11.2010, 12:47


Мастер
****

Группа: Пользователи
Сообщений: 209
Регистрация: 26.6.2009
Из: г. Омск
Пользователь №: 201 900
Модель телефона: L9 & EM30
Прошивка: 05R & 04.06R

Рейтинг: 584



Ant-ON,
что-то я 2раза SDK качал и архив битый получается... Распаковал сколько распаковалось (около 100Мб) закинул все в /opt/toolchains/motomagx/arm-eabi2/lib, симлинк создал.
Затем lib_E8 закинул в /opt/toolchains/motomagx/arm-eabi2/arm-linux-gnueabi
Старую папку lib переименовал в lib_z6.
Мэйкфайл
Spoiler:

# App can compile for platform:

# PLATFORM=EZX-Z6

# PLATFORM=EZX-Z6W

# PLATFORM=EZX-U9

# PLATFORM=EZX-ZN5

# PLATFORM=EZX-V8

# PLATFORM=EZX-E8 (default)

# PLATFORM=EZX-VE66

# PLATFORM=EZX-EM35

#.

# For example - compile this source for Motorla ZN5:

#.

# cd /PROJECT_FOLDER/

# make clean

# make PLATFORM=EZX-ZN5

#.



######Config######

APPNAME := launcher

UPLOAD_PATH := /mmc/mmca1/bin/

##################



TOOLPREFIX := /opt/toolchains/motomagx/arm-eabi2

ARMLIB := $(TOOLPREFIX)/arm-linux-gnueabi/lib



ifeq ($(PLATFORM),)

PLATFORM = EZX-E8
endif



ifeq ($(PLATFORM),EZX-Z6)

QTDIR := $(TOOLPREFIX)/lib/qt-2.3.8

EZXDIR := $(TOOLPREFIX)/lib/ezx-z6

LINKLIB := -lm -lqte-mt -lezxpm -ljpeg -lezxappbase -lezxtapi-xscale-r -llog_util -llighting

DIRECTIV := -DEZX_Z6

TARGET = $(APPNAME)_Z6

endif



ifeq ($(PLATFORM),EZX-V8)

QTDIR := $(TOOLPREFIX)/lib/qt-v8

EZXDIR := $(TOOLPREFIX)/lib/ezx-v8

LINKLIB := -lm -lqte-mt -lezxpm -lezxappbase

DIRECTIV := -DEZX_V8

TARGET = $(APPNAME)_V8

ZNEWCHECKBOX = 1

endif



ifeq ($(PLATFORM),EZX-E8)

ARMLIB := $(TOOLPREFIX)/arm-linux-gnueabi/lib_E8

QTDIR := $(TOOLPREFIX)/lib/qt-e8

EZXDIR := $(TOOLPREFIX)/lib/ezx-e8

LINKLIB := -lm -lqte-mt -lezxappbase

DIRECTIV := -DEZX_E8

TARGET = $(APPNAME)_E8

endif



ifeq ($(PLATFORM),EZX-EM30)

ARMLIB := $(TOOLPREFIX)/arm-linux-gnueabi/lib_E8

QTDIR := $(TOOLPREFIX)/lib/qt-em30

EZXDIR := $(TOOLPREFIX)/lib/ezx-em30

EZXDIR2 := $(TOOLPREFIX)/lib/ezx-e8

LINKLIB := -lm -lqte-mt -lezxappbase

DIRECTIV := -DEZX_EM30

TARGET = $(APPNAME)_EM30

endif



ifeq ($(PLATFORM),EZX-U9)

QTDIR := $(TOOLPREFIX)/lib/qt-zn5

EZXDIR := $(TOOLPREFIX)/lib/ezx-u9

EZXDIR2 := $(TOOLPREFIX)/lib/ezx-zn5

LINKLIB := -lm -lqte-mt -lezxappbase

DIRECTIV := -DEZX_U9

TARGET = $(APPNAME)_U9

endif



ifeq ($(PLATFORM),EZX-Z6W)

QTDIR := $(TOOLPREFIX)/lib/qt-z6w

EZXDIR := $(TOOLPREFIX)/lib/ezx-z6w

LINKLIB := -lm -lqte-mt -lezxappbase

DIRECTIV := -DEZX_Z6W

TARGET = $(APPNAME)_Z6W

endif



ifeq ($(PLATFORM),EZX-ZN5)

QTDIR := $(TOOLPREFIX)/lib/qt-zn5

EZXDIR := $(TOOLPREFIX)/lib/ezx-zn5

LINKLIB := -lm -lqte-mt -lezxappbase

DIRECTIV := -DEZX_ZN5

TARGET = $(APPNAME)_ZN5

endif



ifeq ($(PLATFORM),EZX-EM35)

ARMLIB := $(TOOLPREFIX)/arm-linux-gnueabi/lib_E8

QTDIR := $(TOOLPREFIX)/lib/qt-em35

EZXDIR := $(TOOLPREFIX)/lib/ezx-em35

LINKLIB := -lm -lqte-mt -lezxappbase

DIRECTIV := -DEZX_EM35

TARGET = $(APPNAME)_EM35

endif



ifeq ($(PLATFORM),EZX-VE66)

ARMLIB := $(TOOLPREFIX)/arm-linux-gnueabi/lib_E8

QTDIR := $(TOOLPREFIX)/lib/qt-em35

EZXDIR := $(TOOLPREFIX)/lib/ezx-ve66

LINKLIB := -lm -lqte-mt -lezxappbase

DIRECTIV := -DEZX_VE66

TARGET = $(APPNAME)_VE66

endif



CC = $(TOOLPREFIX)/bin/arm-linux-gnueabi-gcc

CXX = $(TOOLPREFIX)/bin/arm-linux-gnueabi-g++

LD = $(TOOLPREFIX)/bin/arm-linux-gnueabi-g++

STRIP = $(TOOLPREFIX)/bin/arm-linux-strip

CFLAGS = -pipe -Wall -W -O2 -DNO_DEBUG $(INCPATH)

CXXFLAGS= -pipe -DQWS -fno-exceptions -fno-rtti -Wall -W -O2 -DNO_DEBUG $(DIRECTIV) $(INCPATH)

INCPATH = -I$(QTDIR)/include -I$(EZXDIR)/include -I$(EZXDIR2)/include -I $(TOOLPREFIX)/arm-linux-gnueabi/include

LDFLAGS = -s

LINK = $(TOOLPREFIX)/bin/arm-linux-gnueabi-gcc

LFLAGS = -Wl,-rpath-link,$(EZXDIR)/lib

LIBS = $(SUBLIBS) -L$(EZXDIR)/lib -L$(EZXDIR2)/lib -L$(ARMLIB) -L$(QTDIR)/lib $(LINKLIB)

MOC = $(QTDIR)/bin/moc

UIC = $(QTDIR)/bin/uic

####### Files

HEADERS =
SOURCES = launcher.cpp
OBJECTS = launcher.o
INTERFACES =
UICDECLS =
UICIMPLS =
SRCMOC =
OBJMOC =
DIST =
TARGET = launcher
INTERFACE_DECL_PATH = .

####### Implicit rules

.SUFFIXES: .cpp .cxx .cc .C .c

.cpp.o:
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<

.cxx.o:
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<

.cc.o:
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<

.C.o:
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<

.c.o:
$(CC) -c $(CFLAGS) $(INCPATH) -o $@ $<

####### Build rules


all: $(TARGET)

$(TARGET): $(UICDECLS) $(OBJECTS) $(OBJMOC)
$(LINK) $(LFLAGS) -o $(TARGET) $(OBJECTS) $(OBJMOC) $(LIBS)

moc: $(SRCMOC)

tmake: Makefile

Makefile: launcher.pro
tmake launcher.pro -o Makefile

dist:
$(TAR) launcher.tar launcher.pro $(SOURCES) $(HEADERS) $(INTERFACES) $(DIST)
$(GZIP) launcher.tar

clean:
-rm -f $(OBJECTS) $(OBJMOC) $(SRCMOC) $(UICIMPLS) $(UICDECLS) $(TARGET)
-rm -f *~ core

####### Sub-libraries


###### Combined headers


####### Compile

launcher.o: launcher.cpp
[close]

Собираю, пишет
Код

rock@andLinux:/mnt/win/app/launcher$ make
/opt/toolchains/motomagx/arm-eabi2/bin/arm-linux-gnueabi-gcc -Wl,-rpath-link,/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib -o launcher launcher.o   -L/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib -L/lib -L/opt/toolchains/motomagx/arm-eabi2/arm-linux-gnueabi/lib_E8 -L/opt/toolchains/motomagx/arm-eabi2/lib/qt-e8/lib -lm -lqte-mt -lezxappbase
/opt/toolchains/motomagx/arm-eabi2/bin/../lib/gcc/arm-linux-gnueabi/3.4.3/../../../../arm-linux-gnueabi/bin/ld: crt1.o:No such file: No such file or directory

-L/opt/toolchains/motomagx/arm-eabi2/arm-linux-gnueabi/lib_E8 это же прописано, почему найти не может?
Ну ладно, переименовал lib_E8 в lib, собираю -
Spoiler:

rock@andLinux:/mnt/win/app/launcher$ make
/opt/toolchains/motomagx/arm-eabi2/bin/arm-linux-gnueabi-gcc -Wl,-rpath-link,/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib -o launcher launcher.o -L/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib -L/lib -L/opt/toolchains/motomagx/arm-eabi2/arm-linux-gnueabi/lib_E8 -L/opt/toolchains/motomagx/arm-eabi2/lib/qt-e8/lib -lm -lqte-mt -lezxappbase
/opt/toolchains/motomagx/arm-eabi2/bin/../lib/gcc/arm-linux-gnueabi/3.4.3/../../../../arm-linux-gnueabi/bin/ld: skipping incompatible /lib/libc.so.6 when searching for libc.so.6
/opt/toolchains/motomagx/arm-eabi2/bin/../lib/gcc/arm-linux-gnueabi/3.4.3/../../../../arm-linux-gnueabi/bin/ld: warning: libpthread.so.0, needed by /opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libqte-mt.so, not found (try using -rpath or -rpath-link)
/opt/toolchains/motomagx/arm-eabi2/bin/../lib/gcc/arm-linux-gnueabi/3.4.3/../../../../arm-linux-gnueabi/bin/ld: warning: libz.so.1, needed by /opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libqte-mt.so, not found (try using -rpath or -rpath-link)
/opt/toolchains/motomagx/arm-eabi2/bin/../lib/gcc/arm-linux-gnueabi/3.4.3/../../../../arm-linux-gnueabi/bin/ld: warning: libstdc++.so.6, needed by /opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libqte-mt.so, not found (try using -rpath or -rpath-link)
/opt/toolchains/motomagx/arm-eabi2/bin/../lib/gcc/arm-linux-gnueabi/3.4.3/../../../../arm-linux-gnueabi/bin/ld: warning: libm.so.6, needed by /opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libqte-mt.so, not found (try using -rpath or -rpath-link)
/opt/toolchains/motomagx/arm-eabi2/bin/../lib/gcc/arm-linux-gnueabi/3.4.3/../../../../arm-linux-gnueabi/bin/ld: /opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libmedl.so: warning: sh_link not set for section `.ARM.exidx'
/opt/toolchains/motomagx/arm-eabi2/bin/../lib/gcc/arm-linux-gnueabi/3.4.3/../../../../arm-linux-gnueabi/bin/ld: warning: libdl.so.2, needed by /opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libqte-mt.so, not found (try using -rpath or -rpath-link)
/opt/toolchains/motomagx/arm-eabi2/bin/../lib/gcc/arm-linux-gnueabi/3.4.3/../../../../arm-linux-gnueabi/bin/ld: warning: libc.so.6, needed by /opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libqte-mt.so, not found (try using -rpath or -rpath-link)
/opt/toolchains/motomagx/arm-eabi2/bin/../lib/gcc/arm-linux-gnueabi/3.4.3/../../../../arm-linux-gnueabi/bin/ld: /opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libezxflex.so: warning: sh_link not set for section `.ARM.exidx'
/opt/toolchains/motomagx/arm-eabi2/bin/../lib/gcc/arm-linux-gnueabi/3.4.3/../../../../arm-linux-gnueabi/bin/ld: /opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libvkm.so: warning: sh_link not set for section `.ARM.exidx'
/opt/toolchains/motomagx/arm-eabi2/bin/../lib/gcc/arm-linux-gnueabi/3.4.3/../../../../arm-linux-gnueabi/bin/ld: warning: librt.so.1, needed by /opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libmedl.so, not found (try using -rpath or -rpath-link)
/opt/toolchains/motomagx/arm-eabi2/bin/../lib/gcc/arm-linux-gnueabi/3.4.3/../../../../arm-linux-gnueabi/bin/ld: /opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libconfigmanager.so: warning: sh_link not set for section `.ARM.exidx'
/opt/toolchains/motomagx/arm-eabi2/bin/../lib/gcc/arm-linux-gnueabi/3.4.3/../../../../arm-linux-gnueabi/lib/crt1.o: In function `_start':
init.c:(.text+0x24): undefined reference to `__libc_start_main'
init.c:(.text+0x28): undefined reference to `abort'
launcher.o: In function `main':
launcher.cpp:(.text+0x18): undefined reference to `puts'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libmedl.so: undefined reference to `shm_unlink@GLIBC_2.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libqte-mt.so: undefined reference to `pthread_mutexattr_init@GLIBC_2.0'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libmedl.so: undefined reference to `sem_close@GLIBC_2.1.1'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libqte-mt.so: undefined reference to `_IO_getc@GLIBC_2.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libqte-mt.so: undefined reference to `times@GLIBC_2.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libconfigmanager.so: undefined reference to `std::basic_string<char, std::char_traits<char>, std::allocator<char> >::compare(unsigned int, unsigned int, char const*) const@GLIBCXX_3.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libconfigmanager.so: undefined reference to `std::basic_fstream<char, std::char_traits<char> >::open(char const*, std::_Ios_Openmode)@GLIBCXX_3.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libezxappbase.so: undefined reference to `flock@GLIBC_2.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libmedl.so: undefined reference to `shm_open@GLIBC_2.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libqte-mt.so: undefined reference to `deflateInit2_'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libqte-mt.so: undefined reference to `cos@GLIBC_2.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libqte-mt.so: undefined reference to `isxdigit@GLIBC_2.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libezxappbase.so: undefined reference to `nanosleep@GLIBC_2.0'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libqte-mt.so: undefined reference to `strftime@GLIBC_2.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libmedl.so: undefined reference to `sem_wait@GLIBC_2.1'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libconfigmanager.so: undefined reference to `std::basic_ofstream<char, std::char_traits<char> >::is_open()@GLIBCXX_3.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libvkm.so: undefined reference to `__cxa_end_catch@CXXABI_1.3'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libconfigmanager.so: undefined reference to `std::basic_fstream<char, std::char_traits<char> >::~basic_fstream()@GLIBCXX_3.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/liblm.so: undefined reference to `read@GLIBC_2.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libconfigmanager.so: undefined reference to `strncasecmp@GLIBC_2.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libmedl.so: undefined reference to `pthread_condattr_init@GLIBC_2.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libqte-mt.so: undefined reference to `operator delete(void*)@GLIBCXX_3.4'
...
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libconfigmanager.so: undefined reference to `std::basic_ostream<char, std::char_traits<char> >& std::endl<char, std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> >&)@GLIBCXX_3.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libmedl.so: undefined reference to `typeinfo for std::bad_alloc@GLIBCXX_3.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libqte-mt.so: undefined reference to `fwrite@GLIBC_2.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/liblm.so: undefined reference to `strncat@GLIBC_2.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libqte-mt.so: undefined reference to `bind@GLIBC_2.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libqte-mt.so: undefined reference to `isspace@GLIBC_2.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/liblm.so: undefined reference to `sigprocmask@GLIBC_2.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libezxtapi.so: undefined reference to `alphasort@GLIBC_2.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libezxtapi.so: undefined reference to `fputs@GLIBC_2.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libqte-mt.so: undefined reference to `calloc@GLIBC_2.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libqte-mt.so: undefined reference to `getsockopt@GLIBC_2.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libqte-mt.so: undefined reference to `snprintf@GLIBC_2.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libqte-mt.so: undefined reference to `rand@GLIBC_2.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libmedl.so: undefined reference to `pthread_cond_init@GLIBC_2.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libezxappbase.so: undefined reference to `setegid@GLIBC_2.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libqte-mt.so: undefined reference to `pthread_cond_broadcast@GLIBC_2.3.2'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libezxappbase.so: undefined reference to `__libc_current_sigrtmin@GLIBC_2.1'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libqte-mt.so: undefined reference to `strncpy@GLIBC_2.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libqte-mt.so: undefined reference to `usleep@GLIBC_2.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libaplog.so.1.0.0: undefined reference to `clock_gettime@GLIBC_2.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libezxappbase.so: undefined reference to `seteuid@GLIBC_2.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libezxappbase.so: undefined reference to `std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep::_S_empty_rep_storage@GLIBCXX_3.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libconfigmanager.so: undefined reference to `std::basic_string<char, std::char_traits<char>, std::allocator<char> >::find_last_not_of(char, unsigned int) const@GLIBCXX_3.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libqte-mt.so: undefined reference to `operator new(unsigned int)@GLIBCXX_3.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libvkm.so: undefined reference to `std::_List_node_base::hook(std::_List_node_base*)@GLIBCXX_3.4'
/opt/toolchains/motomagx/arm-eabi2/lib/ezx-e8/lib/libqte-mt.so: undefined reference to `free@GLIBC_2.4'
collect2: ld returned 1 exit status
make: *** Error 1
[close]

Возможно из-за битого архива


Сообщение отредактировал rock88 - 12.11.2010, 12:57
Юзер вышелВ друзьяВизиткаП/Я
К началу страницы
+Ответить

Сообщений в этой теме
croccio   C++ Develop App   21.6.2010, 21:36
croccio   arm-linux-g++ -c -pipe -DQWS -fno-exceptions -fno-...   22.6.2010, 14:02
croccio   can anyone give me E8SDK please??   23.6.2010, 13:39
Ant-ON   can anyone give me E8SDK please?? I use this SDK...   24.6.2010, 14:58
Nsolares   hey croccio, how do you extract the e8 toolchain? ...   25.6.2010, 4:33
croccio   thnk u! u're great! i'mdownlading ...   26.6.2010, 13:35
croccio   bro why i can't reas src code of ztask 2???   26.6.2010, 22:07
croccio   I tried again after quite a time trying to fill th...   3.11.2010, 16:19
Ant-ON   Check existing folder and library in it: /home/ant...   4.11.2010, 18:22
croccio   i see it and exist   4.11.2010, 18:54
Ant-ON   need execute: "sudo ln -s /home/antonio/arm-e...   7.11.2010, 6:01
croccio   it give me this error antonio@antonio:~/e8sdk/E8...   7.11.2010, 13:36
croccio   thank u for help. (10.11.2010, 18:22): bro i ins...   10.11.2010, 16:32
Ant-ON   cd /arm-eabi/lib/ezx-e8/lib rm libezxtapi.so ln -s...   10.11.2010, 18:07
croccio   same error   10.11.2010, 18:25
Устарх   same error /home/antonio/arm-eabi/bin/../lib/gc...   10.11.2010, 19:37
rock88   Я уже полгода долблюсь, пытаюсь что-то на ezx/qt н...   11.11.2010, 3:26
Устарх   Я уже полгода долблюсь, пытаюсь что-то на ezx/qt ...   11.11.2010, 5:00
Ant-ON   rock88, Можно было и спросить. Проблема решается ...   11.11.2010, 12:03
rock88   Ant-ON, то есть вот так -L/mnt/win/SDK/ezx-e8/lib...   11.11.2010, 13:01
Ant-ON   Ant-ON, то есть вот так -L/mnt/win/SDK/ezx-e8/li...   11.11.2010, 15:08
rock88   У тебя разве нет такой папки /opt/toolchains/moto...   11.11.2010, 15:40
Ant-ON   У тебя разве нет такой папки /opt/toolchains/mot...   11.11.2010, 16:14
croccio   can anyone explain in english how to resolve my pr...   11.11.2010, 16:54
Ant-ON   lib_E8 http://narod.ru/disk/27332312000/lib_E8.tar...   11.11.2010, 17:34
Pyth_ON!   Мои последние SDK: http://narod.ru/disk/270463010...   11.1.2011, 15:30
rock88   Ant-ON, что-то я 2раза SDK качал и архив битый пол...   12.11.2010, 12:47
Ant-ON   Скажи какой из двух битый и куда залить.   12.11.2010, 14:53
rock88   Ant-ON, SDK_5_11_10_by_Ant-ON.tar.gz лучше на http...   12.11.2010, 15:43
croccio   i get the same error =( i downloaded your files =(   12.11.2010, 16:01
Ant-ON   rock88, SDK_5_11_10_by_Ant-ON.tar.gz : http://www...   12.11.2010, 20:17
rock88   Ant-ON, Опять у меня архив битый получается, в вин...   13.11.2010, 12:49
simen   Ant-ON, Опять у меня архив битый получается, в ви...   13.11.2010, 19:18
croccio   can anyone make a package or a "distro" ...   14.11.2010, 13:51
Ant-ON   croccio, cd /home/antonio/arm-eabi/lib/ezx-e8/li...   14.11.2010, 16:04
croccio   it doesn't work =( with other apps i've a ...   17.11.2010, 11:52
Ant-ON   croccio, try add: -Wl,-rpath-link, /home/antonio/...   17.11.2010, 14:33
croccio   at the end i've this error: warning: sh_l...   17.11.2010, 15:11
Ant-ON   at the end i've this error: [code]warning...   17.11.2010, 15:21
croccio   how can i progrm omega wheel? (17.11.2010, 16:33...   17.11.2010, 15:31
Ant-ON   how can i progrm omega wheel? I dont know [i] (...   17.11.2010, 15:41
croccio   i can't have telnet service in ubuntu! i...   17.11.2010, 16:03
Ant-ON   how can i download all file with one click?? 1) ...   17.11.2010, 16:27
croccio   it says me Insufficient permissions to access chan...   17.11.2010, 16:43
Ant-ON   it says me Insufficient permissions to access cha...   17.11.2010, 17:35
Ant-ON   SDK от 25.01.11 Запакован также как и предыдущий,...   25.1.2011, 11:44
game37   SDK от 25.01.11 Запакован также как и предыдущий...   29.2.2012, 11:43
Ant-ON   Could you please please reupload SDK_25_01_11_by...   3.3.2012, 12:53
game37   Thank you Ant-ON   5.3.2012, 9:25

C++ Develop App · Motorola ROKR E8, EM30 · Forum
 

Ответ в темуСоздание новой темы
1 чел. читают эту тему (гостей: 1, скрытых пользователей: 0)
Пользователей: 0

 



Текстовая версия Сейчас: 19.7.2025, 12:31

Форум живёт: