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 » Coffee corner » What next?
Re: What next? [message #46521 is a reply to message #46517] Thu, 19 May 2016 17:20 Go to previous messageGo to next message
koldo is currently offline  koldo
Messages: 3355
Registered: August 2008
Senior Veteran
Hello Mirek

Here there are the files for two different computers with Windows 7. All files are under
- c:\Program Files (x86)\Microsoft Visual Studio 14.0
- c:\program files (x86)\windows kits
  • Attachment: files.7z
    (Size: 127.82KB, Downloaded 267 times)


Best regards
Iñaki
Re: What next? [message #46522 is a reply to message #46521] Thu, 19 May 2016 17:30 Go to previous messageGo to next message
cbpporter is currently offline  cbpporter
Messages: 1401
Registered: September 2007
Ultimate Contributor
koldo wrote on Thu, 19 May 2016 18:20
Hello Mirek

Here there are the files for two different computers with Windows 7. All files are under
- c:\Program Files (x86)\Microsoft Visual Studio 14.0
- c:\program files (x86)\windows kits

Those are the exact folders I'm trying to detect too. Under Windows Kits, we need the subfolder 10, not 8.1 or 8.0.

The only problem I'm facing is that the "lib" and "include" folder from "windows kits" has several subfolders, with different versions of the SDK. I have both 10.0.10150.0 and 10.0.10240.0. Inside is the ucrt folder. I'm thinking of sorting these subfolders and using the latest one? And I'm searching for a registry setting that could tell me which one to sue, but so far no luck.
Re: What next? [message #46523 is a reply to message #46522] Fri, 20 May 2016 08:34 Go to previous messageGo to next message
koldo is currently offline  koldo
Messages: 3355
Registered: August 2008
Senior Veteran
Quote:

Those are the exact folders I'm trying to detect too. Under Windows Kits, we need the subfolder 10, not 8.1 or 8.0.

The only problem I'm facing is that the "lib" and "include" folder from "windows kits" has several subfolders, with different versions of the SDK. I have both 10.0.10150.0 and 10.0.10240.0. Inside is the ucrt folder. I'm thinking of sorting these subfolders and using the latest one? And I'm searching for a registry setting that could tell me which one to sue, but so far no luck.

I am doing just that, choosing the latest folder at every option.


Best regards
Iñaki
Re: What next? [message #46540 is a reply to message #46521] Sat, 21 May 2016 19:57 Go to previous messageGo to next message
mirek is currently offline  mirek
Messages: 13975
Registered: November 2005
Ultimate Member
koldo wrote on Thu, 19 May 2016 17:20
Hello Mirek

Here there are the files for two different computers with Windows 7. All files are under
- c:\Program Files (x86)\Microsoft Visual Studio 14.0
- c:\program files (x86)\windows kits


At first glance I do not see anywhing wrong Sad

Would it be possible to put go to InstantSetup.cpp 164

		vc = df.ScanForDir("/vc", "", "bin/link.exe;bin/cl.exe;bin/mspdb140.dll", "bin/1033");
		bin = df.ScanForDir(x64 ? "bin/x64" : "bin/x86", "/windows kits/", "makecat.exe;accevent.exe", "");
		inc = df.ScanForDir("", "/windows kits/", "um/adhoc.h", "um;ucrt;shared");
		lib = df.ScanForDir("", "/windows kits/", "um/x86/kernel32.lib", "um;ucrt");


and add

DUMP(vc);
DUMP(bin);
DUMP(inc);
DUMP(lib);


?

Thanks!
Re: What next? [message #46549 is a reply to message #46540] Tue, 24 May 2016 11:23 Go to previous messageGo to next message
cbpporter is currently offline  cbpporter
Messages: 1401
Registered: September 2007
Ultimate Contributor
mirek wrote on Sat, 21 May 2016 20:57

DUMP(vc);
DUMP(bin);
DUMP(inc);
DUMP(lib);



Quote:

vc = c:/program files (x86)/microsoft visual studio 14.0/vc
bin = c:/program files (x86)/windows kits/8.1/bin/x86
inc =
lib =


VS is from MSC 14 but the SDK from 12? And inc and lib empty.
Re: What next? [message #46567 is a reply to message #46549] Wed, 01 June 2016 16:28 Go to previous messageGo to next message
koldo is currently offline  koldo
Messages: 3355
Registered: August 2008
Senior Veteran
Sorry Mirek, I did not understood you.

- First computer
vc = c:/program files (x86)/microsoft visual studio 14.0/vc
bin = c:/program files (x86)/windows kits/10/bin/x86
inc = c:/program files (x86)/windows kits/10/include/10.0.10240.0
lib = c:/program files (x86)/windows kits/10/lib/10.0.10240.0

vc = c:/program files (x86)/microsoft visual studio 14.0/vc
bin = c:/program files (x86)/windows kits/10/bin/x64
inc = c:/program files (x86)/windows kits/10/include/10.0.10240.0
lib = c:/program files (x86)/windows kits/10/lib/10.0.10240.0


- Second computer
vc = c:/program files (x86)/microsoft visual studio 14.0/vc
bin = c:/program files (x86)/windows kits/8.1/bin/x86
inc =
lib =

vc = c:/program files (x86)/microsoft visual studio 14.0/vc
bin = c:/program files (x86)/windows kits/8.1/bin/x64
inc =
lib =


Best regards
Iñaki
Re: What next? [message #46571 is a reply to message #46567] Thu, 02 June 2016 11:32 Go to previous messageGo to next message
mirek is currently offline  mirek
Messages: 13975
Registered: November 2005
Ultimate Member
koldo wrote on Wed, 01 June 2016 16:28
Sorry Mirek, I did not understood you.

- First computer
vc = c:/program files (x86)/microsoft visual studio 14.0/vc
bin = c:/program files (x86)/windows kits/10/bin/x86
inc = c:/program files (x86)/windows kits/10/include/10.0.10240.0
lib = c:/program files (x86)/windows kits/10/lib/10.0.10240.0

vc = c:/program files (x86)/microsoft visual studio 14.0/vc
bin = c:/program files (x86)/windows kits/10/bin/x64
inc = c:/program files (x86)/windows kits/10/include/10.0.10240.0
lib = c:/program files (x86)/windows kits/10/lib/10.0.10240.0


- Second computer
vc = c:/program files (x86)/microsoft visual studio 14.0/vc
bin = c:/program files (x86)/windows kits/8.1/bin/x86
inc =
lib =

vc = c:/program files (x86)/microsoft visual studio 14.0/vc
bin = c:/program files (x86)/windows kits/8.1/bin/x64
inc =
lib =


I am a little bit confused by "first" and "second" computer now... It looks like on "first" computer, Instant setup worked OK?

Mirek
Re: What next? [message #46578 is a reply to message #46571] Fri, 03 June 2016 08:32 Go to previous messageGo to next message
koldo is currently offline  koldo
Messages: 3355
Registered: August 2008
Senior Veteran
Quote:
It looks like on "first" computer, Instant setup worked OK?
I cannot confirm you as I do not know how TheIDE works.
Really the working directories in this computer are:

MSC15

- BIN
c:/program files (x86)/microsoft visual studio 14.0/vc/bin
c:/program files (x86)/windows kits/10/bin/x86

- INCLUDE
c:/program files (x86)/microsoft visual studio 14.0/vc/include
c:/program files (x86)/windows kits/10/include/10.0.10240.0/um
c:/program files (x86)/windows kits/10/include/10.0.10240.0/ucrt
c:/program files (x86)/windows kits/10/include/10.0.10240.0/shared

- LIB
c:/program files (x86)/microsoft visual studio 14.0/vc/lib
c:/program files (x86)/windows kits/10/lib/10.0.10240.0/ucrt/x86
c:/program files (x86)/windows kits/10/lib/10.0.10240.0/um/x86


Best regards
Iñaki
Re: What next? [message #46656 is a reply to message #46578] Fri, 24 June 2016 11:03 Go to previous messageGo to next message
cbpporter is currently offline  cbpporter
Messages: 1401
Registered: September 2007
Ultimate Contributor
Could somebody with a working VS 2015/MSC14 please go to the appropriate build method in "Setup/Build methods" and list the paths that are included in the list boxes at the bottom of the tabs: "Path -executable directories", "INCLUDE directories" and "LIB directories".

I can't get anything to compile. Things like "windef.h" and "user32.lib" are no where to be found.

Thank you!
Re: What next? [message #46666 is a reply to message #46656] Mon, 27 June 2016 13:01 Go to previous messageGo to next message
cbpporter is currently offline  cbpporter
Messages: 1401
Registered: September 2007
Ultimate Contributor
Whatever version of the SDK is linked on the homepage will try to install SDK version 6.0?

That can't possibly be right...
Re: What next? [message #46668 is a reply to message #46666] Mon, 27 June 2016 17:59 Go to previous message
cbpporter is currently offline  cbpporter
Messages: 1401
Registered: September 2007
Ultimate Contributor
Finally, after about a month or how much time, I can finally have a VS2015 capable setup.

Based on this, I also updated my own auto-detect code, a small lib that detects compiler versions and spits out data that can also be stored as an XML.

I attached such a sample. Anyone interested in the code? It is very experimental.

Previous Topic: Members of structure are finally accessible through plain index
Next Topic: I've just joined the wonderful world of Linux software distribution!
Goto Forum:
  


Current Time: Thu Mar 28 23:29:32 CET 2024

Total time taken to generate the page: 0.01410 seconds