News:

Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!

Main Menu

The 31 July 2007 build (4338) is out.

Started by killerbot, July 31, 2007, 08:17:09 PM

Previous topic - Next topic

Biplab

Quote from: Albenejean on August 01, 2007, 08:00:26 PM
QuoteWhen compilling with Visual C++ 2005, it needs the file "mspdb80.dll" (don't ask me why...). With this version, I've got a message box from cl.exe (the compiler) saying that this file is missing. When switching back to SVN4261, everything is OK (I haven't got any nightlies between these two).

25 July 2007 build (4321) : Could not find the dll needed by cl.exe, even if the dll is in the same directory.

Wait for the next nightly. It should get resolved.

Also ensure that the following path has been added in Additional Path section in Settings > Compiler and debugger > Toolchain executables.
QuoteC:\Program Files\Microsoft Visual Studio 8\Common7\IDE
Be a part of the solution, not a part of the problem.

Albenejean

QuoteTry adding the path to the DLL to Additional Paths.
Already done.

QuoteAlso ensure that the following path has been added in Additional Path section in Settings > Compiler and debugger > Toolchain executables. ...
Already done. Besides I've got a copy of the dll in the compiler's directory.

QuoteWait for the next nightly. It should get resolved.
Thanks!!

Marenz

#17
Hello again,
I try to compile a project which uses precompiled headers.
but the compilation fails:

-------------- Build: Debug-linux in Azadi ---------------
Linking console executable: ./Azadidbg
src/Azadi.h.gch/Debug-linux_src_Azadi_h_gch: file not recognized: File format not recognized
collect2: ld returned 1 exit status
Process terminated with status 1 (0 minutes, 1 seconds)
0 errors, 0 warnings



i checked the file:
file Debug-linux_src_Azadi_h_gch
Debug-linux_src_Azadi_h_gch: GCC precompiled header (version 013) for C++

I have no idea how to get rid of this :(

--Ano

Jan van den Borst

LS
I'm having trouble building codeblocks:

mingw32-g++.exe -shared   -Wl,--dll -Ldevel -Lbase\tinyxml -LD:\swprojects\IN_ACTIVE\codeblocks\wxWidgets-2.8.4\lib\gcc_dll -LV:\mingw\lib  .objs\plugins\projectsimporter\msvc7loader.o .objs\plugins\projectsimporter\msvc7workspaceloader.o .objs\plugins\projectsimporter\msvcloader.o .objs\plugins\projectsimporter\msvcworkspacebase.o .objs\plugins\projectsimporter\msvcworkspaceloader.o .objs\plugins\projectsimporter\projectsimporter.o .objs\plugins\projectsimporter\devcpploader.o   -o devel\share\CodeBlocks\plugins\projectsimporter.dll -Wl,--enable-auto-image-base -Wl,--add-stdcall-alias  -lcodeblocks -lwxmsw28u

Info: resolving vtable for TiXmlDocumentby linking to __imp___ZTV13TiXmlDocument (auto-import)
.objs\plugins\projectsimporter\msvc7loader.o: In function `ZNSt6vectorIPN14BlockAllocatorI21CodeBlocksLayoutEventLj75ELb0EE11LinkedBlockIS1_EESaIS5_EEixEj':
V:/mingw/bin/../lib/gcc/mingw32/3.4.4/../../../../include/c++/3.4.4/bits/stl_vector.h:(.text$_ZN13TiXmlDocumentD1Ev[TiXmlDocument::~TiXmlDocument()]+0x3a): variable 'vtable for TiXmlDocument' can't be auto-imported. Please read the documentation for ld's --enable-auto-import for details.
collect2: ld returned 1 exit status

What should I do?

Jan

oats

is anyone doing regular nightly builds for OS X?  is anyone actively developing bug fixes for OS X?

stahta01

#20
Quote from: oats on August 02, 2007, 10:11:39 PM
is anyone doing regular nightly builds for OS X?  is anyone actively developing bug fixes for OS X?


I have no Idea on the nightly builds for OS X; afb was doing D Language and OS X related stuff about 6 months ago.

Tim S
C Programmer working to learn more about C++.
On Windows 10 64 bit and Windows 11 64 bit.
--
When in doubt, read the CB WiKi FAQ. [url="http://wiki.codeblocks.org"]http://wiki.codeblocks.org[/url]

Biplab

Quote from: oats on August 02, 2007, 10:11:39 PM
is anyone doing regular nightly builds for OS X?  is anyone actively developing bug fixes for OS X?

Please look at the following thread for latest Mac builds.

Quotehttp://forums.next.codeblocks.org/index.php/topic,6440.0.html
Be a part of the solution, not a part of the problem.

Marenz

#22
i am a little confused by codeblocks. i have a project. I can't compile this project no more. i readded all files several times, i just gives me some absolutly senseless errors
(starting with

/home/suprano/c++/azadi/src/Azadi.cpp:40: error: ‘Azadi* Azadi::instance’ is not a static member of ‘class Azadi’
/home/suprano/c++/azadi/src/Azadi.cpp: In constructor ‘Azadi::Azadi(int, char**)’:

)
i have a makefile, using it works out of the box. why is giving me codeblocks this(and more) errors and the makefile not ?

creating a new project does work

--Ano

stahta01

Quote from: Suprano on August 03, 2007, 09:19:16 AM
i am a little confused by codeblocks. i have a project. I can't compile this project no more. i readded all files several times, i just gives me some absolutly senseless errors
(starting with

/home/suprano/c++/azadi/src/Azadi.cpp:40: error: 'Azadi* Azadi::instance' is not a static member of 'class Azadi'
/home/suprano/c++/azadi/src/Azadi.cpp: In constructor 'Azadi::Azadi(int, char**)':

)
i have a makefile, using it works out of the box. why is giving me codeblocks this(and more) errors and the makefile not ?

creating a new project does work

--Ano

I would look at the search directories for headers, this is the main thing that causes problems like this.

I would also turn on full-command line logging and start an new thread in
http://forums.next.codeblocks.org/index.php/board,3.0.html

To Turn on Command line logging

Settings -> "Compiler Debugger"
Select tab "Other Settings" on far right
Change "Compiler Logging" to "Full Command Line"

Then Try rebuilding and post the "Build Log" Then someone might see the issue cause.


C Programmer working to learn more about C++.
On Windows 10 64 bit and Windows 11 64 bit.
--
When in doubt, read the CB WiKi FAQ. [url="http://wiki.codeblocks.org"]http://wiki.codeblocks.org[/url]

afb

Quote from: oats on August 02, 2007, 10:11:39 PM
is anyone doing regular nightly builds for OS X?  is anyone actively developing bug fixes for OS X?

I am doing regular monthly builds for Mac OS X, and developing / fixing occasional bugs as well.

See the BerliOS download page: http://developer.berlios.de/project/showfiles.php?group_id=5358