* [Buildroot] Error while configuring QTOPIA 4 @ 2009-04-08 18:45 Luciano Greiner 2009-04-08 19:01 ` Peter Korsgaard 0 siblings, 1 reply; 8+ messages in thread From: Luciano Greiner @ 2009-04-08 18:45 UTC (permalink / raw) To: buildroot Hello. I am using the trunk version of Buildroot. I am getting the following error while it's configuring QTOPIA 4: Creating qmake. Please wait... make[1]: Entering directory `/mnt/lfs/buildroot/build_i686/qt-embedded-linux-opensource-src-4.5.0/qmake' g++: @: No such file or directory make[1]: *** [property.o] Error 1 make[1]: Leaving directory `/mnt/lfs/buildroot/build_i686/qt-embedded-linux-opensource-src-4.5.0/qmake' make: *** [/mnt/lfs/buildroot/build_i686/qt-embedded-linux-opensource-src-4.5.0/.configured] Error 2 Dows anyone know what may be wrong here? Thanks! Luciano Greiner ^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] Error while configuring QTOPIA 4 2009-04-08 18:45 [Buildroot] Error while configuring QTOPIA 4 Luciano Greiner @ 2009-04-08 19:01 ` Peter Korsgaard 2009-04-08 22:31 ` Luciano Greiner 0 siblings, 1 reply; 8+ messages in thread From: Peter Korsgaard @ 2009-04-08 19:01 UTC (permalink / raw) To: buildroot >>>>> "Luciano" == Luciano Greiner <luciano.greiner@gmail.com> writes: Luciano> Hello. Luciano> I am using the trunk version of Buildroot. I am getting the following Luciano> error while it's configuring QTOPIA 4: Luciano> Creating qmake. Please wait... Luciano> make[1]: Entering directory Luciano> `/mnt/lfs/buildroot/build_i686/qt-embedded-linux-opensource-src-4.5.0/qmake' Luciano> g++: @: No such file or directory Luciano> make[1]: *** [property.o] Error 1 Luciano> Dows anyone know what may be wrong here? Strange, seems like is doesn't like: property.o: property.cpp project.h option.h $(CXX) -c -o $@ $(CXXFLAGS) property.cpp Which looks perfectly fine. Could you change the line in qt-embedded-linux-opensource-src-4.5.0/qmake/Makefile to read: property.o: property.cpp project.h option.h echo $(CXX) -c -o $@ $(CXXFLAGS) property.cpp false And run make again? -- Bye, Peter Korsgaard ^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] Error while configuring QTOPIA 4 2009-04-08 19:01 ` Peter Korsgaard @ 2009-04-08 22:31 ` Luciano Greiner [not found] ` <37c712e0904081612u554e9a1cg2e355be21689bcc3@mail.gmail.com> 0 siblings, 1 reply; 8+ messages in thread From: Luciano Greiner @ 2009-04-08 22:31 UTC (permalink / raw) To: buildroot > Strange, seems like is doesn't like: > > property.o: property.cpp project.h option.h > $(CXX) -c -o $@ $(CXXFLAGS) property.cpp > > Which looks perfectly fine. Could you change the line in > qt-embedded-linux-opensource-src-4.5.0/qmake/Makefile to read: > > property.o: property.cpp project.h option.h > echo $(CXX) -c -o $@ $(CXXFLAGS) property.cpp > false > > And run make again? I couldn't edit qmake/Makefile because it is regenerated once configured is executed. Anyway i place an echo code to get $(CC) variable value before qtopia.mk configure command, and it's value is g++ $(CC) = g++. Thanks Luciano Greiner On Wed, Apr 8, 2009 at 4:01 PM, Peter Korsgaard <jacmet@uclibc.org> wrote: >>>>>> "Luciano" == Luciano Greiner <luciano.greiner@gmail.com> writes: > > ?Luciano> Hello. > ?Luciano> I am using the trunk version of Buildroot. I am getting the following > ?Luciano> error while it's configuring QTOPIA 4: > > ?Luciano> Creating qmake. Please wait... > ?Luciano> make[1]: Entering directory > ?Luciano> `/mnt/lfs/buildroot/build_i686/qt-embedded-linux-opensource-src-4.5.0/qmake' > ?Luciano> g++: @: No such file or directory > ?Luciano> make[1]: *** [property.o] Error 1 > > ?Luciano> Dows anyone know what may be wrong here? > > Strange, seems like is doesn't like: > > property.o: property.cpp project.h option.h > ? ? ? ?$(CXX) -c -o $@ $(CXXFLAGS) property.cpp > > Which looks perfectly fine. Could you change the line in > qt-embedded-linux-opensource-src-4.5.0/qmake/Makefile to read: > > property.o: property.cpp project.h option.h > ? ? ? ?echo $(CXX) -c -o $@ $(CXXFLAGS) property.cpp > ? ? ? ?false > > And run make again? > > -- > Bye, Peter Korsgaard > ^ permalink raw reply [flat|nested] 8+ messages in thread
[parent not found: <37c712e0904081612u554e9a1cg2e355be21689bcc3@mail.gmail.com>]
* [Buildroot] Error while configuring QTOPIA 4 [not found] ` <37c712e0904081612u554e9a1cg2e355be21689bcc3@mail.gmail.com> @ 2009-04-08 23:33 ` Luciano Greiner 2009-04-09 14:13 ` Luciano Greiner [not found] ` <37c712e0904090721h294a8612raabb77d37627b025@mail.gmail.com> 0 siblings, 2 replies; 8+ messages in thread From: Luciano Greiner @ 2009-04-08 23:33 UTC (permalink / raw) To: buildroot Sorry, i meant CXX. My CXX variable value is g++ Thanks 2009/4/8 Allan Clark <allanc@chickenandporn.com>: > Hi Luciano; > $(CC) isn't used. $(CXX) is used in the code snippets: >> echo $(CXX) -c -o $@ $(CXXFLAGS) property.cpp > You might want to provide Peter and the list with that macro's value as > well. Knowing the value of $(CC) is not very useful. > Allan > > > On Wed, Apr 8, 2009 at 18:31, Luciano Greiner <luciano.greiner@gmail.com> > wrote: >> >> > Strange, seems like is doesn't like: >> > >> > property.o: property.cpp project.h option.h >> > $(CXX) -c -o $@ $(CXXFLAGS) property.cpp >> > >> > Which looks perfectly fine. Could you change the line in >> > qt-embedded-linux-opensource-src-4.5.0/qmake/Makefile to read: >> > >> > property.o: property.cpp project.h option.h >> > echo $(CXX) -c -o $@ $(CXXFLAGS) property.cpp >> > false >> > >> > And run make again? >> >> I couldn't edit qmake/Makefile because it is regenerated once >> configured is executed. >> Anyway i place an echo code to get $(CC) variable value before >> qtopia.mk configure command, and it's value is g++ >> >> $(CC) = g++. >> >> Thanks >> >> Luciano Greiner >> >> >> >> On Wed, Apr 8, 2009 at 4:01 PM, Peter Korsgaard <jacmet@uclibc.org> wrote: >> >>>>>> "Luciano" == Luciano Greiner <luciano.greiner@gmail.com> writes: >> > >> > Luciano> Hello. >> > Luciano> I am using the trunk version of Buildroot. I am getting the >> > following >> > Luciano> error while it's configuring QTOPIA 4: >> > >> > Luciano> Creating qmake. Please wait... >> > Luciano> make[1]: Entering directory >> > Luciano> >> > `/mnt/lfs/buildroot/build_i686/qt-embedded-linux-opensource-src-4.5.0/qmake' >> > Luciano> g++: @: No such file or directory >> > Luciano> make[1]: *** [property.o] Error 1 >> > >> > Luciano> Dows anyone know what may be wrong here? >> > >> > Strange, seems like is doesn't like: >> > >> > property.o: property.cpp project.h option.h >> > $(CXX) -c -o $@ $(CXXFLAGS) property.cpp >> > >> > Which looks perfectly fine. Could you change the line in >> > qt-embedded-linux-opensource-src-4.5.0/qmake/Makefile to read: >> > >> > property.o: property.cpp project.h option.h >> > echo $(CXX) -c -o $@ $(CXXFLAGS) property.cpp >> > false >> > >> > And run make again? >> > >> > -- >> > Bye, Peter Korsgaard >> > >> _______________________________________________ >> buildroot mailing list >> buildroot at busybox.net >> http://lists.busybox.net/mailman/listinfo/buildroot > > > > -- > allanc at chickenandporn.com "??" http://linkedin.com/in/goldfish > please, no proprietary attachments (http://tinyurl.com/cbgq) > Sent from New York, NY, United States -- Luciano Greiner ^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] Error while configuring QTOPIA 4 2009-04-08 23:33 ` Luciano Greiner @ 2009-04-09 14:13 ` Luciano Greiner 2009-04-09 14:17 ` Thiago A. Corrêa [not found] ` <37c712e0904090721h294a8612raabb77d37627b025@mail.gmail.com> 1 sibling, 1 reply; 8+ messages in thread From: Luciano Greiner @ 2009-04-09 14:13 UTC (permalink / raw) To: buildroot Any thought on what can be happening ? Thanks 2009/4/8 Luciano Greiner <luciano.greiner@gmail.com>: > Sorry, i meant CXX. > > My CXX variable value is g++ > > Thanks > > 2009/4/8 Allan Clark <allanc@chickenandporn.com>: >> Hi Luciano; >> $(CC) isn't used. $(CXX) is used in the code snippets: >>> echo $(CXX) -c -o $@ $(CXXFLAGS) property.cpp >> You might want to provide Peter and the list with that macro's value as >> well. Knowing the value of $(CC) is not very useful. >> Allan >> >> >> On Wed, Apr 8, 2009 at 18:31, Luciano Greiner <luciano.greiner@gmail.com> >> wrote: >>> >>> > Strange, seems like is doesn't like: >>> > >>> > property.o: property.cpp project.h option.h >>> > $(CXX) -c -o $@ $(CXXFLAGS) property.cpp >>> > >>> > Which looks perfectly fine. Could you change the line in >>> > qt-embedded-linux-opensource-src-4.5.0/qmake/Makefile to read: >>> > >>> > property.o: property.cpp project.h option.h >>> > echo $(CXX) -c -o $@ $(CXXFLAGS) property.cpp >>> > false >>> > >>> > And run make again? >>> >>> I couldn't edit qmake/Makefile because it is regenerated once >>> configured is executed. >>> Anyway i place an echo code to get $(CC) variable value before >>> qtopia.mk configure command, and it's value is g++ >>> >>> $(CC) = g++. >>> >>> Thanks >>> >>> Luciano Greiner >>> >>> >>> >>> On Wed, Apr 8, 2009 at 4:01 PM, Peter Korsgaard <jacmet@uclibc.org> wrote: >>> >>>>>> "Luciano" == Luciano Greiner <luciano.greiner@gmail.com> writes: >>> > >>> > Luciano> Hello. >>> > Luciano> I am using the trunk version of Buildroot. I am getting the >>> > following >>> > Luciano> error while it's configuring QTOPIA 4: >>> > >>> > Luciano> Creating qmake. Please wait... >>> > Luciano> make[1]: Entering directory >>> > Luciano> >>> > `/mnt/lfs/buildroot/build_i686/qt-embedded-linux-opensource-src-4.5.0/qmake' >>> > Luciano> g++: @: No such file or directory >>> > Luciano> make[1]: *** [property.o] Error 1 >>> > >>> > Luciano> Dows anyone know what may be wrong here? >>> > >>> > Strange, seems like is doesn't like: >>> > >>> > property.o: property.cpp project.h option.h >>> > $(CXX) -c -o $@ $(CXXFLAGS) property.cpp >>> > >>> > Which looks perfectly fine. Could you change the line in >>> > qt-embedded-linux-opensource-src-4.5.0/qmake/Makefile to read: >>> > >>> > property.o: property.cpp project.h option.h >>> > echo $(CXX) -c -o $@ $(CXXFLAGS) property.cpp >>> > false >>> > >>> > And run make again? >>> > >>> > -- >>> > Bye, Peter Korsgaard >>> > >>> _______________________________________________ >>> buildroot mailing list >>> buildroot at busybox.net >>> http://lists.busybox.net/mailman/listinfo/buildroot >> >> >> >> -- >> allanc at chickenandporn.com "??" http://linkedin.com/in/goldfish >> please, no proprietary attachments (http://tinyurl.com/cbgq) >> Sent from New York, NY, United States > > > > -- > Luciano Greiner > -- Luciano Greiner ^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] Error while configuring QTOPIA 4 2009-04-09 14:13 ` Luciano Greiner @ 2009-04-09 14:17 ` Thiago A. Corrêa 2009-04-09 14:34 ` Luciano Greiner 0 siblings, 1 reply; 8+ messages in thread From: Thiago A. Corrêa @ 2009-04-09 14:17 UTC (permalink / raw) To: buildroot Hi, 2009/4/9 Luciano Greiner <luciano.greiner@gmail.com>: > Any thought on what can be happening ? > > Thanks > It appears to be something with the host toolchain. Are you able to call it? Perhaps it's not in the PATH. Everything else seems fine and I'm able to build under Gentoo. Kind Regards, Thiago A. Correa ^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] Error while configuring QTOPIA 4 2009-04-09 14:17 ` Thiago A. Corrêa @ 2009-04-09 14:34 ` Luciano Greiner 0 siblings, 0 replies; 8+ messages in thread From: Luciano Greiner @ 2009-04-09 14:34 UTC (permalink / raw) To: buildroot I'm using the LFS Live CD under virtualbox. I was able to compile QTOPIA4 with the same host in the last stable version of buildroot. It happening since i started to use the trunk version. Thanks Luciano Greiner 2009/4/9 Thiago A. Corr?a <thiago.correa@gmail.com>: > Hi, > > 2009/4/9 Luciano Greiner <luciano.greiner@gmail.com>: >> Any thought on what can be happening ? >> >> Thanks >> > > ? It appears to be something with the host toolchain. Are you able to > call it? Perhaps it's not in the PATH. Everything else seems fine and > I'm able to build under Gentoo. > > Kind Regards, > ? ?Thiago A. Correa > ^ permalink raw reply [flat|nested] 8+ messages in thread
[parent not found: <37c712e0904090721h294a8612raabb77d37627b025@mail.gmail.com>]
[parent not found: <26fbce020904090749v529109bk2b301bcdda12f0d@mail.gmail.com>]
* [Buildroot] Error while configuring QTOPIA 4 [not found] ` <26fbce020904090749v529109bk2b301bcdda12f0d@mail.gmail.com> @ 2009-04-13 19:32 ` Luciano Greiner 0 siblings, 0 replies; 8+ messages in thread From: Luciano Greiner @ 2009-04-13 19:32 UTC (permalink / raw) To: buildroot i think the file not found error is something related to environment variables. Looking at my staging_dir i found i have usr/bin/i686-linux-uclibc-g++. So i updated CXX variable to "i686-linux-uclibc-g++". just before ./configure on qtopia4.make. Now it passes through configure command, but fails compilation with: project.cpp:(.text+0xef14): undefined reference to `QFile::open(_IO_FILE*, QFlags<QIODevice::OpenModeFlag>)' project.o: In function `QMakeProject::read(QString const&, QMap<QString, QStringList>&)': project.cpp:(.text+0x1767c): undefined reference to `QFile::open(_IO_FILE*, QFlags<QIODevice::OpenModeFlag>)' collect2: ld returned 1 exit status make[1]: ** [/mnt/lfs/buildroot/build_i686/qt-embedded-linux-opensource-src-4.5.0/bin/qmake] Erro 1 make[1]: Saindo do diret?rio `/mnt/lfs/buildroot/build_i686/qt-embedded-linux-opensource-src-4.5.0/qmake' make: ** [/mnt/lfs/buildroot/build_i686/qt-embedded-linux-opensource-src-4.5.0/.configured] Erro 2 Any ideas? Thanks! 2009/4/9 Luciano Greiner <luciano.greiner@gmail.com>: > 2009/4/9 Allan Clark <allanc@chickenandporn.com>: >> Might want to provide a download URL for your config file; I am not sure if >> you've sent that yet, but it helps anyone whose interest you've captured to >> look at what's going on -- easier than trying to see your screen :) > Sure! :) Here it goes: > > http://greiner.com.br/mybuildroot.config > > Thank you! > > >> 2009/4/8 Luciano Greiner <luciano.greiner@gmail.com> >>> >>> Sorry, i meant CXX. >>> >>> My CXX variable value is g++ >>> >>> Thanks >>> >>> 2009/4/8 Allan Clark <allanc@chickenandporn.com>: >>> > Hi Luciano; >>> > $(CC) isn't used. ?$(CXX) is used in the code snippets: >>> >> ? ? ? ?echo $(CXX) -c -o $@ $(CXXFLAGS) property.cpp >>> > You might want to provide Peter and the list with that macro's value as >>> > well. ?Knowing the value of $(CC) is not very useful. >>> > Allan >>> > >>> > >>> > On Wed, Apr 8, 2009 at 18:31, Luciano Greiner >>> > <luciano.greiner@gmail.com> >>> > wrote: >>> >> >>> >> > Strange, seems like is doesn't like: >>> >> > >>> >> > property.o: property.cpp project.h option.h >>> >> > ? ? ? ?$(CXX) -c -o $@ $(CXXFLAGS) property.cpp >>> >> > >>> >> > Which looks perfectly fine. Could you change the line in >>> >> > qt-embedded-linux-opensource-src-4.5.0/qmake/Makefile to read: >>> >> > >>> >> > property.o: property.cpp project.h option.h >>> >> > ? ? ? ?echo $(CXX) -c -o $@ $(CXXFLAGS) property.cpp >>> >> > ? ? ? ?false >>> >> > >>> >> > And run make again? >>> >> >>> >> I couldn't edit qmake/Makefile because it is regenerated once >>> >> configured is executed. >>> >> Anyway i place an echo code to get $(CC) variable value before >>> >> qtopia.mk configure command, and it's value is g++ >>> >> >>> >> $(CC) = g++. >>> >> >>> >> Thanks >>> >> >>> >> Luciano Greiner >>> >> >>> >> >>> >> >>> >> On Wed, Apr 8, 2009 at 4:01 PM, Peter Korsgaard <jacmet@uclibc.org> >>> >> wrote: >>> >> >>>>>> "Luciano" == Luciano Greiner <luciano.greiner@gmail.com> writes: >>> >> > >>> >> > ?Luciano> Hello. >>> >> > ?Luciano> I am using the trunk version of Buildroot. I am getting the >>> >> > following >>> >> > ?Luciano> error while it's configuring QTOPIA 4: >>> >> > >>> >> > ?Luciano> Creating qmake. Please wait... >>> >> > ?Luciano> make[1]: Entering directory >>> >> > ?Luciano> >>> >> > >>> >> > `/mnt/lfs/buildroot/build_i686/qt-embedded-linux-opensource-src-4.5.0/qmake' >>> >> > ?Luciano> g++: @: No such file or directory >>> >> > ?Luciano> make[1]: *** [property.o] Error 1 >>> >> > >>> >> > ?Luciano> Dows anyone know what may be wrong here? >>> >> > >>> >> > Strange, seems like is doesn't like: >>> >> > >>> >> > property.o: property.cpp project.h option.h >>> >> > ? ? ? ?$(CXX) -c -o $@ $(CXXFLAGS) property.cpp >>> >> > >>> >> > Which looks perfectly fine. Could you change the line in >>> >> > qt-embedded-linux-opensource-src-4.5.0/qmake/Makefile to read: >>> >> > >>> >> > property.o: property.cpp project.h option.h >>> >> > ? ? ? ?echo $(CXX) -c -o $@ $(CXXFLAGS) property.cpp >>> >> > ? ? ? ?false >>> >> > >>> >> > And run make again? >>> >> > >>> >> > -- >>> >> > Bye, Peter Korsgaard >>> >> > >>> >> _______________________________________________ >>> >> buildroot mailing list >>> >> buildroot at busybox.net >>> >> http://lists.busybox.net/mailman/listinfo/buildroot >>> > >>> > >>> > >>> > -- >>> > allanc at chickenandporn.com ?"??" http://linkedin.com/in/goldfish >>> > please, no proprietary attachments (http://tinyurl.com/cbgq) >>> > Sent from New York, NY, United States >>> >>> >>> >>> -- >>> Luciano Greiner >> >> >> >> -- >> allanc at chickenandporn.com ?"??" http://linkedin.com/in/goldfish >> please, no proprietary attachments (http://tinyurl.com/cbgq) >> > > > > -- > Luciano Greiner > -- Luciano Greiner ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2009-04-13 19:32 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-08 18:45 [Buildroot] Error while configuring QTOPIA 4 Luciano Greiner
2009-04-08 19:01 ` Peter Korsgaard
2009-04-08 22:31 ` Luciano Greiner
[not found] ` <37c712e0904081612u554e9a1cg2e355be21689bcc3@mail.gmail.com>
2009-04-08 23:33 ` Luciano Greiner
2009-04-09 14:13 ` Luciano Greiner
2009-04-09 14:17 ` Thiago A. Corrêa
2009-04-09 14:34 ` Luciano Greiner
[not found] ` <37c712e0904090721h294a8612raabb77d37627b025@mail.gmail.com>
[not found] ` <26fbce020904090749v529109bk2b301bcdda12f0d@mail.gmail.com>
2009-04-13 19:32 ` Luciano Greiner
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox