Re: [deal.II] Issue on Windows x64 Debug linkage

2016-11-28 Thread Tulio Ligneul
I used both methods that i said earlier and both worked. But to avoid having to set a variable inside the visual studio command prompt and opening the project from there, at the end, i prefer to use the CMake solution in https://github.com/preillyme/hiphop-php/blob/master/CMake/VisualStudioTool

Re: [deal.II] Issue on Windows x64 Debug linkage

2016-11-26 Thread Jason McIntosh
Hi TĂșlio, What exactly did you do in VisualStudio? Did you edit your project file outside of the IDE or did you make a change in your IDE or did you edit a Windows environment variable? Jason On Saturday, November 19, 2016 at 7:37:49 AM UTC-6, Tulio Ligneul wrote: > > Hi, > > I just would li

Re: [deal.II] Issue on Windows x64 Debug linkage

2016-11-19 Thread Tulio Ligneul
Hi, I just would like to let you guys know that i have solved my problem. Previously, the linker was hanging when i tried to build an example and didn't even give any error message. After a installed a more recent version of visual studio community 2015, it started giving an error message sayin

Re: [deal.II] Issue on Windows x64 Debug linkage

2016-07-28 Thread Wolfgang Bangerth
On 07/27/2016 08:05 PM, Tulio Ligneul wrote: In my system, deal_II.lib is about 400MB and deal_II.g.lib is almost 2GB. How much memory/RAM do you have in your system? I would not be surprised if you needed 10GB to link a 2GB library. If you don't have that much, the operating system will star

Re: [deal.II] Issue on Windows x64 Debug linkage

2016-07-27 Thread Tulio Ligneul
In my system, deal_II.lib is about 400MB and deal_II.g.lib is almost 2GB. Maybe the issue is somehow related to these reports: https://connect.microsoft.com/VisualStudio/feedback/details/995447/linker-is-hanging-while-linking-some-project-in-debug-x64-configuration https://www.gittprogram.com/qu

Re: [deal.II] Issue on Windows x64 Debug linkage

2016-07-27 Thread Matthias Maier
The last time I checked (statically) linking an executable against the debug or release version was on the order of several minutes. We currently do not support shared libraries (dlls) on Windows. This might change with [1] though. [1] https://github.com/dealii/dealii/pull/2807 -- The deal.II p

Re: [deal.II] Issue on Windows x64 Debug linkage

2016-07-27 Thread Wolfgang Bangerth
On 07/27/2016 06:49 AM, Tulio Ligneul wrote: I have been trying to compile the examples using Visual Studio Community 2015 targeting x64 platform. If I try to compile the 'step-1' example in Release mode, it finishes in just a few seconds, but if i try to compile it in Debug mode it seems the li