锘??xml version="1.0" encoding="utf-8" standalone="yes"?>精品国产VA久久久久久久冰,看久久久久久a级毛片,久久天天躁狠狠躁夜夜avapphttp://www.shnenglu.com/xcpp/蹇冩疆婢庢箖zh-cnWed, 07 May 2025 13:33:05 GMTWed, 07 May 2025 13:33:05 GMT60Creating a bootable clean VHDhttp://www.shnenglu.com/xcpp/archive/2011/05/16/create_bootable_clean_vhd.htmlxcppxcppMon, 16 May 2011 09:56:00 GMThttp://www.shnenglu.com/xcpp/archive/2011/05/16/create_bootable_clean_vhd.htmlhttp://www.shnenglu.com/xcpp/comments/146508.htmlhttp://www.shnenglu.com/xcpp/archive/2011/05/16/create_bootable_clean_vhd.html#Feedback1http://www.shnenglu.com/xcpp/comments/commentRss/146508.htmlhttp://www.shnenglu.com/xcpp/services/trackbacks/146508.html2. Attach the VHD, initialize with MBR, create volume (format with NTFS and mount to X:\), set active
3. Launch EasyBCD, in "Bootloader Setup" tab, choose correct Partition, and install BCD (a.k.a. PBR, Partition Boot Record)
4. At this stage the newly installed BCD is still empty. Now click "Add New Entry" in EasyBCD with default settings to add a default entry
5. Deploy a OS into the VHD: imagex /apply <path to install.wim> <index of image> X:\
6. Detach the VHD

Now the VHD is a sysprep'ed, bootable, and absolutely clean VHD.

xcpp 2011-05-16 17:56 鍙戣〃璇勮
]]>
NTFS directory junctions to network shared folderhttp://www.shnenglu.com/xcpp/archive/2011/05/08/junction_link_to_shared_folder.htmlxcppxcppSun, 08 May 2011 06:56:00 GMThttp://www.shnenglu.com/xcpp/archive/2011/05/08/junction_link_to_shared_folder.htmlhttp://www.shnenglu.com/xcpp/comments/145948.htmlhttp://www.shnenglu.com/xcpp/archive/2011/05/08/junction_link_to_shared_folder.html#Feedback0http://www.shnenglu.com/xcpp/comments/commentRss/145948.htmlhttp://www.shnenglu.com/xcpp/services/trackbacks/145948.html
Refer to this MSDN article: http://msdn.microsoft.com/en-us/library/aa365006%28v=VS.85%29.aspx

However here is a easy workaround:

1. Create a symbolic link to the network shared folder
2. Create directory junction to the symbolic link
3. Done.

The link created in step 2 looks like a directory junction, but behaves like a symbolic link.

xcpp 2011-05-08 14:56 鍙戣〃璇勮
]]>
Expand VirtualBox VDI - Linux guest/Windows hosthttp://www.shnenglu.com/xcpp/archive/2010/01/07/expand_linux_guest_vbox_vdi.htmlxcppxcppThu, 07 Jan 2010 03:31:00 GMThttp://www.shnenglu.com/xcpp/archive/2010/01/07/expand_linux_guest_vbox_vdi.htmlhttp://www.shnenglu.com/xcpp/comments/105072.htmlhttp://www.shnenglu.com/xcpp/archive/2010/01/07/expand_linux_guest_vbox_vdi.html#Feedback1http://www.shnenglu.com/xcpp/comments/commentRss/105072.htmlhttp://www.shnenglu.com/xcpp/services/trackbacks/105072.htmlclonezilla and gparted live CD
2. Create a new VDI with bigger size, attach it to the VM, boot the VM with clonezilla live CD
3. Clone the old VDI to new VDI
4. Detach old VDI (don't delete it before new VDI is verified to work)
6. Boot the VM with gparted live CD, delete swap and extended partition, expand the primary partition, and then recreate the extended and swap partition
7. Remove CD and boot the VM, verify if it works
8. Delete old VDI

BTW, for Virtual Box shared folders:

sudo mount -t vboxsf share_name /path/to/mount

To mount it permanently, append a line to /etc/init.d/rc.local with above command.


xcpp 2010-01-07 11:31 鍙戣〃璇勮
]]>
Build wxWidgets applications with CodeLite in Ubuntuhttp://www.shnenglu.com/xcpp/archive/2010/01/06/build_wx_app_with_codelite_in_ubuntu.htmlxcppxcppWed, 06 Jan 2010 14:45:00 GMThttp://www.shnenglu.com/xcpp/archive/2010/01/06/build_wx_app_with_codelite_in_ubuntu.htmlhttp://www.shnenglu.com/xcpp/comments/105046.htmlhttp://www.shnenglu.com/xcpp/archive/2010/01/06/build_wx_app_with_codelite_in_ubuntu.html#Feedback0http://www.shnenglu.com/xcpp/comments/commentRss/105046.htmlhttp://www.shnenglu.com/xcpp/services/trackbacks/105046.html
I just started to play with Linux and the open source C++ IDE CodeLite. The IDE and wxWidgets library looks great, and the Linux platform is becoming more and more user friendly today. So I tried to build an application with CodeLite (2.1.3584) in Ubuntu (9.10).

I tried to build a wxWidgets application in Windows before. According to this article the thing is quite easy. However, I didn't expect it is so difficult to do the same thing in Linux (simply because I can't find a similar article on Internet). I googled again and again but didn't find much stuff useful.

Here is instructions I used:

1. Install wxWidgets package: sudo apt-get install libwxgtk2.8-dev

2. Install build essentials package: sudo apt-get install build-essential

3. Create a link for "/usr/include/wx-2.8/wx" to "/usr/include/wx", or copy the directory over

4. Create a link for "/usr/lib/wx/include/gtk2-unicode-release-2.8/wx/setup.h" to "/usr/include/wx/setup.h", or copy the file over

5. Open CodeLite IDE, create a project using wxWidgets template

6. Modify the default project settings to:
complier options: -g;$(shell wx-config --cxxflags)
linker options: -mwindows;$(shell wx-config --libs)

7. Complie and run


Without step 6 you may see following errors:

No config found to match: /usr/bin/wx-config --cxxflags --unicode=yes --debug=yes in /usr/lib/wx/config

No Target! You should use wx-config program for compilation flags!

It's because there is no debug library exists in /usr/lib/wx/config. By default there is only release+unicode builds.


update on 2010/1/9:

It is actually so easy. I didn't do it in a right way. Now I believe the right process should be following the instructions here.

For a simplified guild:

1. sudo apt-get install build-essential
2. sudo apt-get install libwxgtk2.8-dev libwxgtk2.8-dbg
3. sudo ln -sv /usr/include/wx-2.8/wx /usr/include/wx
4. Create a wx project in CodeLite, build and run with default settings. It should just works


xcpp 2010-01-06 22:45 鍙戣〃璇勮
]]>
VC++ 2008 Express, Win7 SDK, and 64bit targetshttp://www.shnenglu.com/xcpp/archive/2009/09/09/vc2008express_64bit_win7sdk.htmlxcppxcppWed, 09 Sep 2009 02:54:00 GMThttp://www.shnenglu.com/xcpp/archive/2009/09/09/vc2008express_64bit_win7sdk.htmlhttp://www.shnenglu.com/xcpp/comments/95669.htmlhttp://www.shnenglu.com/xcpp/archive/2009/09/09/vc2008express_64bit_win7sdk.html#Feedback6http://www.shnenglu.com/xcpp/comments/commentRss/95669.htmlhttp://www.shnenglu.com/xcpp/services/trackbacks/95669.htmlpatch for VC++ 2008 Express to enable its x64 and IA64 targets (by default this free edition of VC++ only supports x86 targets). It used to work with Windows SDK for Windows Server 2008 and .NET Framework 3.5 nicely, but now as Windows SDK for Windows 7 and .NET Framework 3.5 SP1 has been released, it cannot work sometimes, so I decide to update this patch for the new SDK.

I have to mention that Microsoft introduces 2 new bugs in Win7 SDK:

1. If you are running a x86 machine, the x86 version of Win7 SDK will not install x64 and IA64 tools anyway, even if you have selected all checkboxes during the setup.

Workaround: repair the installed Win7 SDK (from control panel), and check all these checkboxes again, then you get all x64 and IA64 tools back. (note: don't try to install x64 SDK to a x86 machine, setup program will fail)

2. After the Win7 SDK (x86/x64/IA64 all versions) is installed, the Windows SDK Configuration Tool will not register the latest v7.0 SDK as system default (instead it still uses v6.0A). As a result VC++ will not be able to locate x64 and IA64 tools (compliers etc).

Workaround: launch the Windows SDK Configuration Tool from start menu, choose the right version (v7.0), and click "Make Current".

Now you can download and install the new patch here. I have tested it on clean x86 and x64 machines.

I removed the two DLLs from x64 package (VCProjectAMD64Platform.dll and VCProjectIA64Platform.dll), because Win7 SDK will copy correct ones (Microsoft has fixed this bug in Win7 SDK).

xcpp 2009-09-09 10:54 鍙戣〃璇勮
]]>
Entity Framework Query Samples for PostgreSQLhttp://www.shnenglu.com/xcpp/archive/2009/09/08/ef_samples_for_postgresql.htmlxcppxcppTue, 08 Sep 2009 03:56:00 GMThttp://www.shnenglu.com/xcpp/archive/2009/09/08/ef_samples_for_postgresql.htmlhttp://www.shnenglu.com/xcpp/comments/95549.htmlhttp://www.shnenglu.com/xcpp/archive/2009/09/08/ef_samples_for_postgresql.html#Feedback2http://www.shnenglu.com/xcpp/comments/commentRss/95549.htmlhttp://www.shnenglu.com/xcpp/services/trackbacks/95549.html
Microsoft designed EF to support not only its SQL Server. It announced a lot of supported (with supported drivers) 3rd party databases listed here. Luckily my favourite PostgreSQL is present (Npgsql).

Microsoft also released a lot of great samples for EF, and I started to learn EF from this one: http://code.msdn.microsoft.com/EFQuerySamples (it looks fancy and rich). Then I ported the sample database NorthwindEF to PostgreSQL to test if EF for PostgreSQL really works. The initial test shows it works graet: almost all samples can run with PostgreSQL smoothly.  The translated SQL queries also looks good.

I uploaded the ported EF sample for PostgreSQL here (AFAIK there is no official documents on Internet for EF support of PostgreSQL/Npgsql, so this sample can be a good start).

xcpp 2009-09-08 11:56 鍙戣〃璇勮
]]>
PostgreSQL鍜孌bLINQhttp://www.shnenglu.com/xcpp/archive/2009/09/04/postgres_dblinq_galance.htmlxcppxcppFri, 04 Sep 2009 08:34:00 GMThttp://www.shnenglu.com/xcpp/archive/2009/09/04/postgres_dblinq_galance.htmlhttp://www.shnenglu.com/xcpp/comments/95316.htmlhttp://www.shnenglu.com/xcpp/archive/2009/09/04/postgres_dblinq_galance.html#Feedback0http://www.shnenglu.com/xcpp/comments/commentRss/95316.htmlhttp://www.shnenglu.com/xcpp/services/trackbacks/95316.htmlPostgreSQL鍜孌bLINQ錛?/p>
  • PostgreSQL鐨勫悕瀛椾篃鍙互鍙仛Postgres錛岀畝鍐欏彲浠ヤ負PG
  • PG鏄竴涓姛鑳藉叏闈㈢殑寮婧愭暟鎹簱錛堟瘮閭d釜榪濧CID閮芥病鏈夌殑MySQL寮哄浜嗭級錛屾ц兘涔熷緢涓嶉敊錛屾垜鎶奡QL Server 2008閲岄潰鐨?GB鏁版嵁瀵煎叆鍒癙G閲岄潰鍚庯紝鍙戠幇鏌ヨ鎬ц兘鍜屾暟鎹彃鍏ユц兘閮藉樊涓嶅錛屼絾鏄疭QL Server濂藉儚榪樻槸瑕佸揩涓鐐圭偣錛堥潪甯鎬笉涓ヨ皚鐨勬祴璇曪紝鎴戣繖涓嶈秴榪?0%錛屼紒涓氱増錛?
  • PG鐨刡ackup鏂囦歡鐪熸槸瓚呯駭鐨勭渷絀洪棿錛孲QL Server瀵煎嚭鐨刡ak鏂囦歡鏈?G澶氾紝鑰孭G瀵煎嚭鐨勫彧鏈夊嚑鐧懼厗錛堣繖涓暟鎹簱閲岄潰閲嶅鏁版嵁澶氭湁鍏崇郴錛夛紝PG鍦ㄥ浠界殑鏃跺欏簲璇ユ槸鑷姩鍘嬬緝浜?
  • PG鐨刾gAdminIII铏界劧鐣岄潰涓嶆槸閭d箞濂界湅錛屼絾鏄緢濂界敤錛岃兘鐢⊿QL鑴氭湰騫茬殑浜嬫儏瀹冨熀鏈笂閮借兘騫?
  • PG鍦╓indows涓婇潰涔熸敮鎸丼SPI闆嗘垚璁よ瘉鏂瑰紡錛岃繖鍜孲QL Server榛樿鐨勮璇佹柟寮忔槸涓鏍風殑錛屽彲浠ュ緢澶х殑鎻愬崌瀹夊叏鎬э紙涓嶇敤鏄庢枃瀵嗙爜浜嗭級錛屼絾鏄垜娌¤兘閰嶆垚鍔?. 
  • 鍦≒G閲岄潰unicode灝辨槸utf-8錛岃繖鏍瘋嫳鏂囧崰涓涓瓧鑺傦紝涓枃鍗犱笁涓瓧鑺傦紝涓嶅ucs-2銆傚綋鐒秛cs-2鍙兘鏀寔2^16涓瓧絎︼紝涓嶆槸鐪熸鐨剈nicode銆傜湡姝g殑unicode鏈濂界敤ucs-4錛屽彲鏄繖涓瓧闀垮張澶ぇ浜嗐傜敱浜嶱G鍐呴儴涓嶇敤ucs-2錛屾墍浠ュ拰windows紼嬪簭鐨勫尮閰嶄笉鏄偅涔堢悊鎯籌紙NT鐨剈nicode灝辨槸ucs-2錛夛紝瑕佷箞騫茶剢閮界敤DBCS銆備絾鏄?net閲岄潰鍙堝彧鏈塽nicode鐨剆tring... 鎵浠ヨ繕鏄疌++濂?
  • DbLINQ铏界劧宸茬粡寮鍙戜簡涓ゅ勾澶氫簡錛屼絾鐜板湪鍩烘湰涓婅繕鏄病娉曠敤錛岀畝鍗曠殑鍗曡〃鏌ヨ榪樿錛宷uery紼嶅井澶嶆潅涓鐐圭偣灝變笉琛屼簡錛実roup by閮芥椂甯稿嚭闂錛屽畬鍏ㄦ病娉曠敤鍦ㄥ疄闄呯殑欏圭洰涓紙鍝曟槸綰ū涔愮殑欏圭洰錛?
  • DbLINQ鐜板湪鍙笅杞界殑鏄?.18鐗堟湰錛堜竴騫村墠鐨勶級錛屼粠SVN鎷栦笅鏉ョ殑鏄?.19錛宐ug澶氬錛屾瘮濡侾G閲岄潰琛ㄧ殑涓婚敭蹇呴』鍛藉悕涓簒xx_pkey鐨勫艦寮忥紝涓嶇劧灝辮涓嶅埌銆傚閿垯鍙敮鎸佸崟鍒楃殑澶栭敭錛屽鍒楃殑璇濅笉鑳界洿鎺ョ敓鎴怌#錛屽彧鑳界敓鎴愪竴涓敊璇殑DBML錛岀劧鍚庡湪VS閲岄潰淇敼DBML涔嬪悗鍐嶇敓鎴怌#錛岃繖鏍鋒墠鑳界敤銆備負榪欎簺bug鐪熸槸嫻垂浜嗗ソ澶氭椂闂達紙閲嶅緩涓婚敭灝辮姳浜嗗嚑涓皬鏃訛級
  • DbLINQ鐨勫緢澶歟xample閲岄潰閮芥槸涓鍫嗘敞閲婏紝鐪嬩篃鐪嬩笉鎳傦紝鍩烘湰涓婃病鍟ョ敤澶?

鎬昏岃█涔嬶紝鎴戝PostgreSQL榪欎釜鏁版嵁搴撳嵃璞$浉褰撲笉閿欙紝鑰屽DbLINQ姣旇緝澶辨湜銆傜湅鏉ヨ鍦≒G涓婇潰鐢↙INQ錛岃繕鏄洿鎺ヤ笂ADO.NET Entity Framework姣旇緝濂姐?/p>

xcpp 2009-09-04 16:34 鍙戣〃璇勮
]]>
Boost 1.39鐨勭紪璇戠粡鍘?/title><link>http://www.shnenglu.com/xcpp/archive/2009/07/08/building_boost_1_39_in_windows.html</link><dc:creator>xcpp</dc:creator><author>xcpp</author><pubDate>Wed, 08 Jul 2009 13:51:00 GMT</pubDate><guid>http://www.shnenglu.com/xcpp/archive/2009/07/08/building_boost_1_39_in_windows.html</guid><wfw:comment>http://www.shnenglu.com/xcpp/comments/89570.html</wfw:comment><comments>http://www.shnenglu.com/xcpp/archive/2009/07/08/building_boost_1_39_in_windows.html#Feedback</comments><slash:comments>9</slash:comments><wfw:commentRss>http://www.shnenglu.com/xcpp/comments/commentRss/89570.html</wfw:commentRss><trackback:ping>http://www.shnenglu.com/xcpp/services/trackbacks/89570.html</trackback:ping><description><![CDATA[     鎽樿: 鏈榪戝啓涓笢瑗胯鐢ㄥ埌姝e垯琛ㄨ揪寮忥紝浜庢槸灝辨兂鍒頒簡Boost搴擄紝鐢變簬浠ュ墠娌℃湁鐢ㄨ繃榪欎釜搴擄紝鎵浠ヤ粖澶╀負榪欎簨鍎跨湡鏄垂浜嗕竴鐣姛澶?<br> <br>涓寮濮嬫兂鍒扮殑鏄疊oost錛屼絾鏄獊鐒舵兂璧稸C++ 2008鐨凷P1涓嶆槸宸茬粡甯︿簡tr1鐨勫疄鐜板悧錛岃矊浼肩洿鎺ョ敤灝辮浜嗐備絾鏄簨涓庢効榪濓紝鎴戣繖閲岃鐨勬槸VC++ 2008 Express錛岃櫧鐒朵篃鑳?include <regex>錛屼絾鏄啓鍑烘潵鐨勭▼搴忓彧鑳界紪璇戜笉鑳介摼鎺ャ傚悗鏉ヤ竴鏌ユ墠鐭ラ亾寰蔣鐨則r1瀹炵幇鏄笉鏀寔Express鐨勶紙铏界劧涓嶆敮鎸佸嵈鍙堟妸澶存枃浠舵斁鍦ㄩ偅閲岃瘬浜猴級錛岃帿闈炲張瑕佸幓鍒釜VC瀹屾暣鐗堥偅閲屾嫹鐐逛笢瑗垮嚭鏉ヤ笉鎴愶紵榪欏簲璇ユ槸娌″繀瑕佺殑錛屽洜涓轟粠VC++ 2003寮濮婤oost灝卞彲浠ュ緢濂界殑鍦╒C涓嬬紪璇戜簡錛屾墍浠ュ共鑴嗕笉綆¢偅涓暐tr1浜嗭紝鍑嗗鐩存帴浠嶣oost瀹樻柟緗戠珯涓嬭澆Boost鍐嶈嚜宸辯紪璇戙?nbsp; <a href='http://www.shnenglu.com/xcpp/archive/2009/07/08/building_boost_1_39_in_windows.html'>闃呰鍏ㄦ枃</a><img src ="http://www.shnenglu.com/xcpp/aggbug/89570.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.shnenglu.com/xcpp/" target="_blank">xcpp</a> 2009-07-08 21:51 <a href="http://www.shnenglu.com/xcpp/archive/2009/07/08/building_boost_1_39_in_windows.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item><item><title>VC++ 2008 Express鍜孉TL銆丮FC銆乄TL緙栫▼http://www.shnenglu.com/xcpp/archive/2009/04/24/vc2008express_atlmfcwtl.htmlxcppxcppFri, 24 Apr 2009 06:45:00 GMThttp://www.shnenglu.com/xcpp/archive/2009/04/24/vc2008express_atlmfcwtl.htmlhttp://www.shnenglu.com/xcpp/comments/80942.htmlhttp://www.shnenglu.com/xcpp/archive/2009/04/24/vc2008express_atlmfcwtl.html#Feedback13http://www.shnenglu.com/xcpp/comments/commentRss/80942.htmlhttp://www.shnenglu.com/xcpp/services/trackbacks/80942.html
澶嶅埗濂借繖涓洰褰曞悗錛屽氨鍙互寮濮嬮厤緗甒TL8.0浜嗭細

1銆佽В鍘嬬緝WTL8鐨勫畨瑁呭寘
2銆佸鍒秙etup80x.js鍒皊etup90x.js
3銆佺敤璁頒簨鏈墦寮setup90x.js錛屾浛鎹㈡墍鏈夊瓧絎︿覆8.0涓?.0騫朵繚瀛樻枃浠?br>4銆佽繍琛宻etup90x.js
5銆佸湪VC++ Express閲岄潰閰嶇疆WTL鐨刬nclude鐩綍

visualfc鍗氬閲岀粰鍑虹殑鏂規鏄畨瑁匬SDK2003錛岃繖涓猄DK甯︾殑ATL鍜孧FC鐗堟湰鍒嗗埆鏄?.0鍜?.2鐨勶紝涓嶆槸鏈鏂扮殑鐗堟湰錛屼笉澶埥銆傚綋鐒訛紝浠庡畬鏁寸増鐨勫畨瑁呯洰褰曢噷闈㈡嫹璐濆嚭涓滆タ鏉ョ粰Express鐗堟湰鐢紝榪欐牱鍋氬彲鑳借繕鏄湁鐐圭洍鐗堝珜鐤戙?

xcpp 2009-04-24 14:45 鍙戣〃璇勮
]]>
VC++ 2008 Express鍜?4浣嶇紪紼?/title><link>http://www.shnenglu.com/xcpp/archive/2009/04/24/vc2008express_64bit.html</link><dc:creator>xcpp</dc:creator><author>xcpp</author><pubDate>Fri, 24 Apr 2009 06:18:00 GMT</pubDate><guid>http://www.shnenglu.com/xcpp/archive/2009/04/24/vc2008express_64bit.html</guid><wfw:comment>http://www.shnenglu.com/xcpp/comments/80936.html</wfw:comment><comments>http://www.shnenglu.com/xcpp/archive/2009/04/24/vc2008express_64bit.html#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://www.shnenglu.com/xcpp/comments/commentRss/80936.html</wfw:commentRss><trackback:ping>http://www.shnenglu.com/xcpp/services/trackbacks/80936.html</trackback:ping><description><![CDATA[<p>Visual Studio鐨凟xpress緋誨垪铏界劧鍦ㄥ姛鑳戒笂鑲畾姣斾笉涓婂畬鏁寸殑Team Suite鐗堟湰錛屼絾鏄畠鏄厤璐圭殑錛岃屼笖“璇ユ湁鐨勯兘鏈変簡”錛屾墍浠ュ畠姝e湪鍙樺緱瓚婃潵瓚婃祦琛屻傚浜嶸C++ Express錛屽畠鐨勪笉鏂逛究涔嬪涔嬩竴鏄笉鏀寔64浣嶇紪紼嬶紝鑰岃繖涓檺鍒跺湪瀹夎Windows SDK鍚庯紝鍦ㄩ粯璁ょ殑璁劇疆渚濈劧瀛樺湪銆傛湁涓彨浣淛ens鐨勪漢鎼滈泦浜嗗悇涓鍧涗笂紼嬪簭鍛樹滑鍒嗕韓鐨勫悇縐嶆柟妗堬紝鐜板湪浼間箮緇堜簬鐪嬪埌浜嗘洐鍏夛紝鎸夌収浠栧啓鍦ㄤ笂闈log閲岄潰鐨勬柟娉曪紝鍙互璁¬C++ Express瀹岀編鐨勬敮鎸?4浣嶇紪紼嬶紝鍖呮嫭AMD64鍜孖A64銆?/p> <p>浜庢槸鎴戝啓浜嗕竴浜涜剼鏈榪欑patch鏂規硶鑳藉鑷姩鍖栫殑鎵ц銆?a href="http://www.shnenglu.com/Files/xcpp/XVCE.zip">/Files/xcpp/XVCE.zip</a></p> <p>榪欎釜鑴氭湰鍙互鏀寔32浣嶅拰64浣嶇殑Windows銆傛垜鍙湪Win6鍜學in7涓婇潰嫻嬭瘯榪囪繖浜涜剼鏈紝鍦ㄦ垜鐢ㄧ殑鍑犲彴鐢佃剳涓婂叏閮藉畬緹庤繍琛岋紝鎴戜互鍓嶅啓鐨勫嚑涓?4浣嶇▼搴忛」鐩枃浠墮兘鑳介『鍒╃殑鎵撳紑銆佺紪璇戝拰榪愯銆傚綋鐒禝A64鐨勭▼搴忚櫧鐒惰兘緙栬瘧浣嗘槸鎴戞病鍦版柟鍘昏繍琛屽畠浠紙闇瑕両ntel鐨勫畨鑵懼鐞嗗櫒錛夛紝鎵浠ヤ笉瀹屽叏淇濊瘉鑳界敤錛屼絾鏄簲璇ヨ兘鐢ㄣ?/p> <p>涓嬮潰鏄痳eadme.txt錛?/p> <p>1. Install Visual C++ 2008 Express (to default folder in C drive, or this patch will not work)<br>2. Install Windows SDK (Microsoft Windows SDK for Windows Server 2008 and .NET Framework 3.5)<br>3. Open a command prompt, navigate to the folder contains this file, run setup_x86.bat or setup_x64.bat according to your system architecture<br>4. If there is no error in the command prompt, launch the Visual C++ 2008 Express IDE and build your X64 or IA64 projects</p> <p>This work is based on the work by jenshuebel: <a ><font color=#c50000>http://jenshuebel.wordpress.com/2009/02/12/visual-c-2008-express-edition-and-64-bit-targets/</font></a></p> <p>Thanks jenshuebel for the complete and accurate instructions, and thanks Microsoft for the free Visual C++ IDE.</p> <img src ="http://www.shnenglu.com/xcpp/aggbug/80936.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.shnenglu.com/xcpp/" target="_blank">xcpp</a> 2009-04-24 14:18 <a href="http://www.shnenglu.com/xcpp/archive/2009/04/24/vc2008express_64bit.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item></channel></rss> <footer> <div class="friendship-link"> <p>感谢您访问我们的网站,您可能还对以下资源感兴趣:</p> <a href="http://www.shnenglu.com/" title="精品视频久久久久">精品视频久久久久</a> <div class="friend-links"> </div> </div> </footer> <a href="http://www.tv81.cn" target="_blank">婷婷久久综合九色综合九七</a>| <a href="http://www.zjwazx.cn" target="_blank">久久久久无码精品国产app</a>| <a href="http://www.qqmuying.cn" target="_blank">亚洲欧美日韩久久精品</a>| <a href="http://www.nlzm.net.cn" target="_blank">久久综合狠狠综合久久</a>| <a href="http://www.xhcedu.cn" target="_blank">亚洲伊人久久成综合人影院 </a>| <a href="http://www.jkmdz.cn" target="_blank">久久精品国产精品亚洲下载</a>| <a href="http://www.sxmkw.cn" target="_blank">99久久免费国产精品</a>| <a href="http://www.fq2.com.cn" target="_blank">久久久久亚洲精品无码蜜桃 </a>| <a href="http://www.xfidc.com.cn" target="_blank">欧美日韩中文字幕久久伊人</a>| <a href="http://www.bagscheap.cn" target="_blank">亚洲精品99久久久久中文字幕</a>| <a href="http://www.expo2006sy.com.cn" target="_blank">一本色道久久综合狠狠躁篇</a>| <a href="http://www.dx37.cn" target="_blank">国产精品久久99</a>| <a href="http://www.zjfinancial.cn" target="_blank">国产亚洲欧美成人久久片</a>| <a href="http://www.moldpx.cn" target="_blank">亚洲AV无码1区2区久久</a>| <a href="http://www.ybwsf.cn" target="_blank">蜜桃麻豆WWW久久囤产精品</a>| <a href="http://www.ea52.cn" target="_blank">亚洲国产成人精品91久久久</a>| <a href="http://www.nzlx.cn" target="_blank">久久久一本精品99久久精品66</a>| <a href="http://www.oubaidu.cn" target="_blank">久久精品国产亚洲精品</a>| <a href="http://www.521mz.cn" target="_blank">国产成年无码久久久久毛片</a>| <a href="http://www.h2ofood.cn" target="_blank">国产午夜精品理论片久久影视</a>| <a href="http://www.wkbxdlr.cn" target="_blank">久久综合久久综合亚洲</a>| <a href="http://www.sebyse.cn" target="_blank">久久中文字幕精品</a>| <a href="http://www.hrtravel.cn" target="_blank">精品国产一区二区三区久久蜜臀</a>| <a href="http://www.leaow.cn" target="_blank">国产女人aaa级久久久级</a>| <a href="http://www.fuwumianyang.cn" target="_blank">国产三级观看久久</a>| <a href="http://www.ghoststory.cn" target="_blank">国产精品99久久精品</a>| <a href="http://www.pgt.net.cn" target="_blank">精品久久久久香蕉网</a>| <a href="http://www.ytljc.cn" target="_blank">亚洲中文字幕无码一久久区</a>| <a href="http://www.qy80.cn" target="_blank">久久精品水蜜桃av综合天堂 </a>| <a href="http://www.veyp.cn" target="_blank">狠狠色丁香久久婷婷综合蜜芽五月</a>| <a href="http://www.qhuo.com.cn" target="_blank">久久不见久久见免费视频7</a>| <a href="http://www.sxttzs.cn" target="_blank">亚洲精品午夜国产VA久久成人</a>| <a href="http://www.uxgj.cn" target="_blank">久久人人超碰精品CAOPOREN</a>| <a href="http://www.jv3znx.cn" target="_blank">国产成人综合久久精品红</a>| <a href="http://www.ciidc.org.cn" target="_blank">国产精品免费久久久久久久久</a>| <a href="http://www.hadonghoon.cn" target="_blank">久久久av波多野一区二区</a>| <a href="http://www.vtsg.cn" target="_blank">久久亚洲精精品中文字幕</a>| <a href="http://www.qxmsv.cn" target="_blank">久久精品九九亚洲精品</a>| <a href="http://www.asook.cn" target="_blank">久久精品国产亚洲av影院</a>| <a href="http://www.wuweibuzhi.cn" target="_blank">粉嫩小泬无遮挡久久久久久</a>| <a href="http://www.7708.com.cn" target="_blank">久久久久久亚洲精品成人</a>| <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> </body>