Overview
Examples
Screenshots
Comparisons
Applications
Download
Documentation
Tutorials
Bazaar
Status & Roadmap
FAQ
Authors & License
Forums
Funding Ultimate++
Search on this site
Search in forums












SourceForge.net Logo
Home » Community » U++ community news and announcements » Upp 704-dev1 released
Upp 704-dev1 released [message #9255] Tue, 24 April 2007 08:47 Go to next message
unodgs is currently offline  unodgs
Messages: 1366
Registered: November 2005
Location: Poland
Ultimate Contributor

Back on the dev-road again!

Changes since 2007.1:



[Updated on: Tue, 24 April 2007 23:09]

Report message to a moderator

Re: Upp 704-dev1 released [message #9268 is a reply to message #9255] Tue, 24 April 2007 20:15 Go to previous messageGo to next message
zsolt is currently offline  zsolt
Messages: 697
Registered: December 2005
Location: Budapest, Hungary
Contributor
PostgreSQL?
Re: Upp 704-dev1 released [message #9272 is a reply to message #9268] Tue, 24 April 2007 23:09 Go to previous messageGo to next message
unodgs is currently offline  unodgs
Messages: 1366
Registered: November 2005
Location: Poland
Ultimate Contributor

I knew I forgot about something... Changelog updated!
Re: Upp 704-dev1 released [message #9273 is a reply to message #9255] Wed, 25 April 2007 03:42 Go to previous messageGo to next message
Ulti is currently offline  Ulti
Messages: 108
Registered: September 2006
Experienced Member
can not install on xp_en_sp2
Re: Upp 704-dev1 released [message #9277 is a reply to message #9273] Wed, 25 April 2007 08:26 Go to previous messageGo to next message
unodgs is currently offline  unodgs
Messages: 1366
Registered: November 2005
Location: Poland
Ultimate Contributor

Could you be more specific?
Re: Upp 704-dev1 released [message #9323 is a reply to message #9277] Fri, 27 April 2007 00:38 Go to previous messageGo to next message
adkiller is currently offline  adkiller
Messages: 25
Registered: November 2005
Promising Member
When is the next dev release?

Thanks,
-Ad
Re: Upp 704-dev1 released [message #9335 is a reply to message #9323] Fri, 27 April 2007 22:44 Go to previous messageGo to next message
unodgs is currently offline  unodgs
Messages: 1366
Registered: November 2005
Location: Poland
Ultimate Contributor

each monday/tuesday - at least this is the plan Wink
small freebsd fix [message #9343 is a reply to message #9255] Sun, 29 April 2007 17:26 Go to previous messageGo to next message
atmks is currently offline  atmks
Messages: 33
Registered: July 2006
Member
hi

small freebsd fix:

--- uppsrc/Core/heap.cpp        (revision 54)
+++ uppsrc/Core/heap.cpp        (working copy)
@@ -41,7 +41,7 @@
 #ifdef PLATFORM_WIN32
        return VirtualAlloc(NULL, size, MEM_RESERVE|MEM_COMMIT, PAGE_READWRITE);
 #else
-#ifdef PLATFORM_OSX11
+#if defined(PLATFORM_OSX11) || defined(PLATFORM_FREEBSD)
        return mmap(0, size, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANON, -1, 0);
 #else
        return mmap(0, size, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0);

Re: Upp 704-dev1 released [message #9349 is a reply to message #9255] Tue, 01 May 2007 14:55 Go to previous messageGo to next message
kretol is currently offline  kretol
Messages: 14
Registered: December 2006
Promising Member
There is a problem with building multithreaded dlls linked against Upp Core on Windows (MSC7,MSC8).
I can build a dll but it crashes with acces violation error on LoadLibrary.
Everything is ok when singlethreaded flag is specified.
Also - there were no such problems with earlier upp versions.
Any clue what could be causing this?
Thanks in advance,
Wiktor

Re: Upp 704-dev1 released [message #9350 is a reply to message #9349] Tue, 01 May 2007 15:23 Go to previous messageGo to next message
mirek is currently offline  mirek
Messages: 13975
Registered: November 2005
Ultimate Member
kretol wrote on Tue, 01 May 2007 08:55

There is a problem with building multithreaded dlls linked against Upp Core on Windows (MSC7,MSC8).
I can build a dll but it crashes with acces violation error on LoadLibrary.
Everything is ok when singlethreaded flag is specified.
Also - there were no such problems with earlier upp versions.
Any clue what could be causing this?
Thanks in advance,
Wiktor




Thank you.

I think the reason could be the new allocator. Try compiler with "USEMALLOC" (and report results).

Mirek
Re: Upp 704-dev1 released [message #9352 is a reply to message #9350] Tue, 01 May 2007 17:32 Go to previous messageGo to next message
kretol is currently offline  kretol
Messages: 14
Registered: December 2006
Promising Member
Thank you,Mirek.
#if defined(flagMT)
#define _MULTITHREADED
#define flagUSEMALLOC
#endif
solved the problem.
Wiktor
Re: Upp 704-dev1 released [message #9369 is a reply to message #9352] Wed, 02 May 2007 22:56 Go to previous message
mirek is currently offline  mirek
Messages: 13975
Registered: November 2005
Ultimate Member
kretol wrote on Tue, 01 May 2007 11:32

Thank you,Mirek.
#if defined(flagMT)
#define _MULTITHREADED
#define flagUSEMALLOC
#endif
solved the problem.
Wiktor


Core/Core.h
#ifndef CORE_H
#define CORE_H

#define QLIB3

#if defined(flagMT)
	#define _MULTITHREADED
	#ifdef flagDLL
		#define flagUSEMALLOC
	#endif
#endif


Should work too... (without kicking our fast allocator out for executables...).

Mirek
Previous Topic: Upp 2007.1 released
Next Topic: Upp 705-dev1 released
Goto Forum:
  


Current Time: Wed Apr 24 21:04:54 CEST 2024

Total time taken to generate the page: 0.03431 seconds