<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Troubles building and executing NPP]]></title><description><![CDATA[<p dir="auto">Hi, I currently have problems with making a notepad++git version working.(Last commit on it is <a href="https://github.com/ErwanDelhoveUCL/notepad-plus-plus/commit/8516c7b48e3213410f5fab42533c98814d7433ab" rel="nofollow ugc">8516c7b</a>)</p>
<p dir="auto">One of the first problem that I had was with the generation of SciLexer.dll due to a lack of communication of my windows prompt. Thanks to this <a href="https://community.notepad-plus-plus.org/topic/17605/error-build-scilexer-dll-with-boost/5?_=1601736480283&amp;lang=fr">old post</a>, I finally found how to make it work(N.B It appears that I had not generated the 32 bit boostregexLib version and that it was needed).</p>
<p dir="auto">The current problem that I have now is a  simple execution problem. Whenever I want to launch the generated source (notepad++.exe), I got this error<br />
<img src="/assets/uploads/files/1601817273270-2e302c9c-a9aa-4c67-9c1c-6c4f5e822d01-image.png" alt="2e302c9c-a9aa-4c67-9c1c-6c4f5e822d01-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">Can someone help me fix it? I followed every step describes in the <a href="https://github.com/notepad-plus-plus/notepad-plus-plus/blob/master/BUILD.md" rel="nofollow ugc">build guide</a> but I’m still lost.<br />
I don’t know what to do. I never heard about this type of key and its use.</p>
<p dir="auto">Thanks in advance!<br />
Erwan Delhove</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/20100/troubles-building-and-executing-npp</link><generator>RSS for Node</generator><lastBuildDate>Mon, 20 Apr 2026 04:08:32 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/20100.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 04 Oct 2020 13:19:40 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Troubles building and executing NPP on Tue, 06 Oct 2020 12:59:15 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/19975">@ErwanDelhoveUCL</a></p>
<p dir="auto">It can be even easier to build a project if you run it from these three bat-files:</p>
<p dir="auto">Run as administrator <code>x86 Native Tools Command Prompt for VS 2017</code></p>
<p dir="auto"><code>call "full_file_path\x32_x64_START_BOOST.bat"</code> Enter</p>
<pre><code>@echo on

cd C:\sources\boost_1_70_0
call bootstrap.bat

cd C:\sources\boost_1_70_0\libs\regex\build
C:\sources\boost_1_70_0\b2.exe toolset=msvc link=static threading=multi runtime-link=static address-model=32 release stage
C:\sources\boost_1_70_0\b2.exe toolset=msvc link=static threading=multi runtime-link=static address-model=64 release stage

md C:\tmp\boostregexLib\x32
md C:\tmp\boostregexLib\x64
copy C:\sources\boost_1_70_0\stage\lib\libboost_regex-vc141-mt-s-x32-1_70.lib C:\tmp\boostregexLib\x32
copy C:\sources\boost_1_70_0\stage\lib\libboost_regex-vc141-mt-s-x64-1_70.lib C:\tmp\boostregexLib\x64

exit
</code></pre>
<p dir="auto">Run as administrator <code>x86 Native Tools Command Prompt for VS 2017</code></p>
<p dir="auto"><code>call "full_file_path\x32_START_SCINTILLA.bat"</code> Enter</p>
<pre><code>@echo on

cd C:\notepad-plus-plus-master\scintilla\win32\

nmake -f scintilla.mak clean

nmake BOOSTPATH=C:\sources\boost_1_70_0\ BOOSTREGEXLIBPATH=C:\tmp\boostregexLib\x32\ -f scintilla.mak

copy /y "C:\notepad-plus-plus-master\scintilla\bin\SciLexer.dll" "C:\notepad-plus-plus-master\PowerEditor\bin\SciLexer32.dll"

exit
</code></pre>
<p dir="auto">Run as administrator <code>x86_x64 Cross Tools Command Prompt for VS 2017</code></p>
<p dir="auto"><code>call "full_file_path\x64_START_SCINTILLA.bat"</code> Enter</p>
<pre><code>@echo on

cd C:\notepad-plus-plus-master\scintilla\win32\

nmake -f scintilla.mak clean

cd C:\notepad-plus-plus-master\scintilla\win32\
nmake BOOSTPATH=C:\sources\boost_1_70_0\ BOOSTREGEXLIBPATH=C:\tmp\boostregexLib\x64\ -f scintilla.mak

copy /y "C:\notepad-plus-plus-master\scintilla\bin\SciLexer.dll" "C:\notepad-plus-plus-master\PowerEditor\bin\SciLexer64.dll"

exit
</code></pre>
]]></description><link>https://community.notepad-plus-plus.org/post/58288</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/58288</guid><dc:creator><![CDATA[andrecool-68]]></dc:creator><pubDate>Tue, 06 Oct 2020 12:59:15 GMT</pubDate></item><item><title><![CDATA[Reply to Troubles building and executing NPP on Tue, 06 Oct 2020 11:38:06 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/19975">@ErwanDelhoveUCL</a> I am doing SCINTILLA cleanup with bat file CLEAR_SCINTILLA.bat<br />
I did not know about other methods))</p>
<pre><code>del /f /q C:\notepad-plus-plus-master\scintilla\win32\Accessor.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\AutoComplete.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\BoostRegexSearch.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\CallTip.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\CaseConvert.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\CaseFolder.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\Catalogue.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\CellBuffer.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\CharacterCategory.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\CharacterSet.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\CharClassify.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\ContractionState.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\DBCS.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\Decoration.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\DefaultLexer.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\Document.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\EditModel.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\Editor.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\EditView.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\ExternalLexer.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\HanjaDic.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\Indicator.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\KeyMap.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexA68k.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexAbaqus.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexAda.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexAPDL.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexAsm.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexAsn1.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexASY.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexAU3.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexAVE.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexAVS.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexBaan.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexBash.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexBasic.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexBatch.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexBibTeX.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexBullant.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexCaml.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexCIL.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexCLW.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexCmake.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexCOBOL.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexCoffeeScript.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexConf.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexCPP.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexCrontab.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexCsound.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexCSS.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexD.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexDataflex.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexDiff.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexDMAP.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexDMIS.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexECL.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexEDIFACT.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexEiffel.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexerBase.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexErlang.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexerModule.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexErrorList.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexerSimple.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexEScript.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexFlagship.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexForth.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexFortran.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexGAP.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexGui4Cli.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexHaskell.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexHex.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexHTML.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexIndent.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexInno.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexJSON.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexKix.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexKVIrc.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexLaTeX.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexLisp.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexLout.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexLua.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexMagik.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexMake.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexMarkdown.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexMatlab.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexMaxima.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexMetapost.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexMMIXAL.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexModula.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexMPT.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexMSSQL.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexMySQL.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexNim.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexNimrod.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexNsis.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexNull.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexObjC.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexOpal.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexOScript.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexPascal.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexPB.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexPerl.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexPLM.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexPO.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexPOV.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexPowerPro.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexPowerShell.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexProgress.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexProps.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexPS.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexPython.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexR.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexRebol.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexRegistry.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexRuby.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexRust.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexSAS.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexScriptol.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexSearchResult.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexSmalltalk.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexSML.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexSorcus.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexSpecman.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexSpice.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexSQL.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexStata.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexSTTXT.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexTACL.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexTADS3.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexTAL.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexTCL.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexTCMD.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexTeX.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexTxt2tags.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexUser.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexVB.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexVerilog.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexVHDL.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexVisualProlog.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexX12.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LexYAML.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\LineMarker.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\MarginView.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\PerLine.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\PlatWin.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\PositionCache.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\PropSetSimple.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\RESearch.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\RunStyles.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\ScintillaBase.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\ScintillaBaseL.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\ScintillaDLL.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\ScintillaWin.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\ScintillaWinL.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\ScintRes.res
del /f /q C:\notepad-plus-plus-master\scintilla\win32\Selection.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\Style.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\StyleContext.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\UniConversion.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\UniqueString.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\UTF8DocumentIterator.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\vc140.pdb
del /f /q C:\notepad-plus-plus-master\scintilla\win32\ViewStyle.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\WordList.obj
del /f /q C:\notepad-plus-plus-master\scintilla\win32\XPM.obj

del /f /s /q C:\notepad-plus-plus-master\scintilla\bin

exit /b
</code></pre>
]]></description><link>https://community.notepad-plus-plus.org/post/58279</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/58279</guid><dc:creator><![CDATA[andrecool-68]]></dc:creator><pubDate>Tue, 06 Oct 2020 11:38:06 GMT</pubDate></item><item><title><![CDATA[Reply to Troubles building and executing NPP on Tue, 06 Oct 2020 09:56:40 GMT]]></title><description><![CDATA[<p dir="auto">Yeah it works. Thanks to you guys(<a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/7377">@Alan-Kilborn</a> ,<a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/14019">@andrecool-68</a> ). I finally succeed to run notepad++ (debug version) with my own generated Scintilla.dll(x64 version).</p>
<p dir="auto">Maybe we should keep this discussion at disposal for other people encountering the same problem (and I’m also not the only one to have 64 processor version ;) ).</p>
<p dir="auto">What do think? Maybe I should add tag or something else?</p>
]]></description><link>https://community.notepad-plus-plus.org/post/58274</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/58274</guid><dc:creator><![CDATA[ErwanDelhoveUCL]]></dc:creator><pubDate>Tue, 06 Oct 2020 09:56:40 GMT</pubDate></item><item><title><![CDATA[Reply to Troubles building and executing NPP on Tue, 06 Oct 2020 09:47:44 GMT]]></title><description><![CDATA[<p dir="auto">I think I found a page for my error. Trying it right now and I will tell you if it works.<br />
<a href="https://sourceforge.net/p/notepad-plus/discussion/331753/thread/b2610e04/" rel="nofollow ugc">https://sourceforge.net/p/notepad-plus/discussion/331753/thread/b2610e04/</a></p>
]]></description><link>https://community.notepad-plus-plus.org/post/58272</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/58272</guid><dc:creator><![CDATA[ErwanDelhoveUCL]]></dc:creator><pubDate>Tue, 06 Oct 2020 09:47:44 GMT</pubDate></item><item><title><![CDATA[Reply to Troubles building and executing NPP on Tue, 06 Oct 2020 09:31:38 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/14019">@andrecool-68</a><br />
A new problem appear with this following command execution:<br />
<img src="/assets/uploads/files/1601976476333-78940876-e0ca-49e9-913f-a0cc1e0daff8-image.png" alt="78940876-e0ca-49e9-913f-a0cc1e0daff8-image.png" class=" img-fluid img-markdown" /><br />
<em>FYI i use the x86_x64 Cross Tools Command Prompt for VS 2017 as an adminstrator</em></p>
<p dir="auto">I got this error in return.<br />
It basically tell me that I should target the same processor. Because the Front end and Back end are not compatible.<br />
<img src="/assets/uploads/files/1601976448576-ee12f393-e1d1-4c5f-953a-14a673814446-image.png" alt="ee12f393-e1d1-4c5f-953a-14a673814446-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">Any idea how to fix it?</p>
]]></description><link>https://community.notepad-plus-plus.org/post/58271</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/58271</guid><dc:creator><![CDATA[ErwanDelhoveUCL]]></dc:creator><pubDate>Tue, 06 Oct 2020 09:31:38 GMT</pubDate></item><item><title><![CDATA[Reply to Troubles building and executing NPP on Mon, 05 Oct 2020 20:17:01 GMT]]></title><description><![CDATA[<p dir="auto">I got this file size:</p>
<p dir="auto"><img src="/assets/uploads/files/1601928844469-000.png" alt="000.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://community.notepad-plus-plus.org/post/58254</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/58254</guid><dc:creator><![CDATA[andrecool-68]]></dc:creator><pubDate>Mon, 05 Oct 2020 20:17:01 GMT</pubDate></item><item><title><![CDATA[Reply to Troubles building and executing NPP on Mon, 05 Oct 2020 19:57:00 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/19975">@ErwanDelhoveUCL</a> said in <a href="/post/58236">Troubles building and executing NPP</a>:</p>
<blockquote>
<p dir="auto">I think i found the issue: SciLexer.dll is baldy made or miss some elements(release version is bigger than generated one)</p>
</blockquote>
<p dir="auto"><img src="/assets/uploads/files/1601927621124-1601900126368-1dae3752-ddae-4d56-b0ee-5de5054b5bc8-image.png" alt="1601900126368-1dae3752-ddae-4d56-b0ee-5de5054b5bc8-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">The x32 and x64 versions have different file sizes!</p>
]]></description><link>https://community.notepad-plus-plus.org/post/58253</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/58253</guid><dc:creator><![CDATA[andrecool-68]]></dc:creator><pubDate>Mon, 05 Oct 2020 19:57:00 GMT</pubDate></item><item><title><![CDATA[Reply to Troubles building and executing NPP on Mon, 05 Oct 2020 13:50:56 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/19975">@ErwanDelhoveUCL</a> said in <a href="/post/58243">Troubles building and executing NPP</a>:</p>
<blockquote>
<p dir="auto">I think that you didn’t understand what I wanted to tell you.</p>
</blockquote>
<p dir="auto">Correct. :-)</p>
<blockquote>
<p dir="auto">I deduct so that it was my generated SciLexer.dll who leads to the given error.</p>
</blockquote>
<blockquote>
<p dir="auto">Maybe I made a mistake in my command line</p>
</blockquote>
<p dir="auto">Hmm, I think if it builds, it should work.<br />
Again, as long as we are talking about a “debug” version of <code>notepad++.exe</code> running it.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/58244</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/58244</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Mon, 05 Oct 2020 13:50:56 GMT</pubDate></item><item><title><![CDATA[Reply to Troubles building and executing NPP on Mon, 05 Oct 2020 13:40:03 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/7377">@Alan-Kilborn</a><br />
I think that you didn’t understand what I wanted to tell you.<br />
I 'm speaking of the SciLexer.dll that I generate myself for the last version of the project. I’ve put the SciLexer.dll version of the release in the debug folder. When I executed the debug version again, it worked!<br />
I deduct so that it was my generated SciLexer.dll who leads to the given error. Maybe I made a mistake in my command line or something like that. So I’m going to investigate there.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/58243</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/58243</guid><dc:creator><![CDATA[ErwanDelhoveUCL]]></dc:creator><pubDate>Mon, 05 Oct 2020 13:40:03 GMT</pubDate></item><item><title><![CDATA[Reply to Troubles building and executing NPP on Mon, 05 Oct 2020 12:27:20 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/19975">@ErwanDelhoveUCL</a> said in <a href="/post/58236">Troubles building and executing NPP</a>:</p>
<blockquote>
<p dir="auto">SciLexer.dll is baldy made or miss some elements(release version is bigger than generated one)</p>
</blockquote>
<p dir="auto">So I’m not sure what your goals are for building Notepad++.<br />
Maybe just for fun?</p>
<p dir="auto">But if you are going to experiment and change code, then you want to do this in the “Debug” build.</p>
<p dir="auto">And with that it doesn’t matter if for Scintilla the “release version is bigger…”</p>
<p dir="auto">So I think your issues are all solved now?</p>
]]></description><link>https://community.notepad-plus-plus.org/post/58237</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/58237</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Mon, 05 Oct 2020 12:27:20 GMT</pubDate></item><item><title><![CDATA[Reply to Troubles building and executing NPP on Mon, 05 Oct 2020 12:15:28 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/7377">@Alan-Kilborn</a><br />
I did it with the most recent version(Notepad++ 7.9: Stand with Hong Kong) and it works fine.<br />
I think i found the issue: SciLexer.dll is baldy made or miss some elements(release version is bigger than generated one)<br />
<img src="/assets/uploads/files/1601900126368-1dae3752-ddae-4d56-b0ee-5de5054b5bc8-image.png" alt="1dae3752-ddae-4d56-b0ee-5de5054b5bc8-image.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://community.notepad-plus-plus.org/post/58236</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/58236</guid><dc:creator><![CDATA[ErwanDelhoveUCL]]></dc:creator><pubDate>Mon, 05 Oct 2020 12:15:28 GMT</pubDate></item><item><title><![CDATA[Reply to Troubles building and executing NPP on Mon, 05 Oct 2020 11:43:28 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/19975">@ErwanDelhoveUCL</a> said in <a href="/post/58229">Troubles building and executing NPP</a>:</p>
<blockquote>
<p dir="auto">the version I try to launch is located at “\<a href="http://visual.net" rel="nofollow ugc">visual.net</a>\x64\Unicode Debug.”</p>
</blockquote>
<p dir="auto">I don’t think it will run directly from there without “help”:  I think you may have to copy some files into that folder as well first.</p>
<blockquote>
<p dir="auto">I’m pretty sure to have the necessary files since there is no change on the branch I’m compiling…</p>
</blockquote>
<p dir="auto">That’s not what I mean.<br />
Okay, here’s what I’d do as a quick test of your built exe:</p>
<ul>
<li>
<p dir="auto">Grab a <em>released</em> portable zip.</p>
</li>
<li>
<p dir="auto">Unzip into a folder.</p>
</li>
<li>
<p dir="auto">Put <em>your</em> build of <code>notepad++.exe</code> in that folder (overwriting the released one).</p>
</li>
<li>
<p dir="auto">Try running that.</p>
</li>
</ul>
<p dir="auto">I’m not saying for sure that this will solve the problem you cited, but it is worth trying.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/58232</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/58232</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Mon, 05 Oct 2020 11:43:28 GMT</pubDate></item><item><title><![CDATA[Reply to Troubles building and executing NPP on Mon, 05 Oct 2020 09:22:42 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/7377">@Alan-Kilborn</a><br />
I’m pretty sure to have the necessary files since there is no change on the branch I’m compiling(master commit=<a href="https://github.com/ErwanDelhoveUCL/notepad-plus-plus/commit/8516c7b48e3213410f5fab42533c98814d7433ab" rel="nofollow ugc">8516c7b</a>).<br />
What I’m not sure about is if it’s from the "\<a href="http://visual.net" rel="nofollow ugc">visual.net</a>\x64\Unicode Debug.” that my debug version should be located. It’s auto-generated by VS-2017, so it should normally be right.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/58229</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/58229</guid><dc:creator><![CDATA[ErwanDelhoveUCL]]></dc:creator><pubDate>Mon, 05 Oct 2020 09:22:42 GMT</pubDate></item><item><title><![CDATA[Reply to Troubles building and executing NPP on Sun, 04 Oct 2020 21:50:36 GMT]]></title><description><![CDATA[<p dir="auto">I forgot to say that the project was built on Windows 7 Home Premium (32-bit)</p>
]]></description><link>https://community.notepad-plus-plus.org/post/58224</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/58224</guid><dc:creator><![CDATA[andrecool-68]]></dc:creator><pubDate>Sun, 04 Oct 2020 21:50:36 GMT</pubDate></item><item><title><![CDATA[Reply to Troubles building and executing NPP on Sun, 04 Oct 2020 21:46:12 GMT]]></title><description><![CDATA[<p dir="auto">My build of the SciLexer.dll project, in two clicks</p>
<p dir="auto">Run as administrator x86 Native Tools Command Prompt for VS 2017<br />
Copy all code, paste into x86 Native Tools Command Prompt for VS 2017, and press Enter</p>
<pre><code>cd C:\sources\boost_1_70_0
bootstrap.bat
cd C:\sources\boost_1_70_0\libs\regex\build
C:\sources\boost_1_70_0\b2.exe toolset=msvc link=static threading=multi runtime-link=static address-model=32 release stage
C:\sources\boost_1_70_0\b2.exe toolset=msvc link=static threading=multi runtime-link=static address-model=64 release stage

md C:\tmp\boostregexLib\x32
md C:\tmp\boostregexLib\x64
copy C:\sources\boost_1_70_0\stage\lib\libboost_regex-vc141-mt-s-x32-1_70.lib C:\tmp\boostregexLib\x32
copy C:\sources\boost_1_70_0\stage\lib\libboost_regex-vc141-mt-s-x64-1_70.lib C:\tmp\boostregexLib\x64

exit /b
</code></pre>
<p dir="auto">Run as administrator x86 Native Tools Command Prompt for VS 2017<br />
Copy all code, paste into x86 Native Tools Command Prompt for VS 2017, and press Enter</p>
<pre><code>cd C:\notepad-plus-plus-master\scintilla\win32\
nmake BOOSTPATH=C:\sources\boost_1_70_0\ BOOSTREGEXLIBPATH=C:\tmp\boostregexLib\x32\ -f scintilla.mak

copy /y "C:\notepad-plus-plus-master\scintilla\bin\SciLexer.dll" "C:\notepad-plus-plus-master\PowerEditor\bin\SciLexer.dll"

exit /b
</code></pre>
<p dir="auto">This is an assembly of the x64 project<br />
Run as administrator x86_x64 Cross Tools Command Prompt for VS 2017<br />
Copy all code, paste into x86_x64 Cross Tools Command Prompt for VS 2017, and press Enter</p>
<pre><code>cd C:\notepad-plus-plus-master\scintilla\win32\
nmake BOOSTPATH=C:\sources\boost_1_70_0\ BOOSTREGEXLIBPATH=C:\tmp\boostregexLib\x64\ -f scintilla.mak

copy /y "C:\notepad-plus-plus-master\scintilla\bin\SciLexer.dll" C:\notepad-plus-plus-master\SciLexer.64.dll

exit /b
</code></pre>
]]></description><link>https://community.notepad-plus-plus.org/post/58223</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/58223</guid><dc:creator><![CDATA[andrecool-68]]></dc:creator><pubDate>Sun, 04 Oct 2020 21:46:12 GMT</pubDate></item><item><title><![CDATA[Reply to Troubles building and executing NPP on Sun, 04 Oct 2020 19:03:12 GMT]]></title><description><![CDATA[<p dir="auto">I went ahead and tried running the command directly through the cmd.exe with VS Build environment, just to get it out of the way, as well as re-extracting the source files, and I get the same error.  Looks like this:</p>
<p dir="auto"><img src="/assets/uploads/files/1601838049772-cmderror1.jpg" alt="cmderror1.jpg" class=" img-fluid img-markdown" /></p>
<p dir="auto">I also went ahead and extracted into the regular program files directory…  It’s not a naming syntax issue either it seems… I’m probably messing up on something incredibly silly…</p>
<p dir="auto">I’m just gonna install with the wizard, spending too much time on this project!  But it was fun to try, I’ll be back when I learn more about linking and building binaries from source.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/58220</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/58220</guid><dc:creator><![CDATA[Adam Lake]]></dc:creator><pubDate>Sun, 04 Oct 2020 19:03:12 GMT</pubDate></item><item><title><![CDATA[Reply to Troubles building and executing NPP on Sun, 04 Oct 2020 18:34:27 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/7377">@Alan-Kilborn</a> The ReadME and Windows Documentation recommends running NMake from the Command Console of Visual Studio, I tried to change from Developer PowerShell to Developer Command Prompt to no avail.  I’m going to delete NPP, unzip, and try again.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/58218</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/58218</guid><dc:creator><![CDATA[Adam Lake]]></dc:creator><pubDate>Sun, 04 Oct 2020 18:34:27 GMT</pubDate></item><item><title><![CDATA[Reply to Troubles building and executing NPP on Sun, 04 Oct 2020 17:04:46 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/19977">@Adam-Lake</a></p>
<p dir="auto">Hmmm, I don’t know if it makes any difference, but I would not attempt a build under Powershell.  I would build under CMD.exe.</p>
<p dir="auto">Also, you’d want a CMD.exe that has the environment all set up for building with Visual Studio, like the readme directs.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/58215</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/58215</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Sun, 04 Oct 2020 17:04:46 GMT</pubDate></item><item><title><![CDATA[Reply to Troubles building and executing NPP on Sun, 04 Oct 2020 16:49:31 GMT]]></title><description><![CDATA[<p dir="auto">Expounding my comment with screenshots:</p>
<p dir="auto">When I compile the cintrilla binaries with the argument ‘nmake BOOSTPATH=C:\sources\boost_1_70_0\ BOOSTREGEXLIBPATH=C:\tmp\scintilla.414\boostregex -f scintilla.mak’ in VS2019 on Windows 10, it fails to compile with &gt;100 errors.</p>
<p dir="auto"><img src="/assets/uploads/files/1601829739445-scintillacompilefail1.jpg" alt="scintillacompilefail1.jpg" class=" img-fluid img-markdown" /></p>
<p dir="auto">Here’s a shot of my directory folders containing the necessary dependent files for the arguments BOOSTPATH &amp; BOOSTREGEXLIBPATH:</p>
<p dir="auto"><img src="/assets/uploads/files/1601829799649-argumentdirectories.jpg" alt="ArgumentDirectories.jpg" class=" img-fluid img-markdown" /></p>
<p dir="auto">One thing I’m concerned about, is the use of ‘C:\ProgramFiles (x86)’ directory path for my NPP directory location.  The reason being is when using the command in PowerShell "cd C:\ProgramFiles (x86)\your-path-here’, the command cd thinks (x86) is a parameter instead of being part of the directory name, so I have to ‘tab-surf’ my cd command to get into the containing directory. Can I safely rename the directory folder for ‘C:\ProgramFiles (x86)’ to ‘C:\ProgramFilesx86’ to eliminate this syntax mess and test it as a solution?</p>
]]></description><link>https://community.notepad-plus-plus.org/post/58214</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/58214</guid><dc:creator><![CDATA[Adam Lake]]></dc:creator><pubDate>Sun, 04 Oct 2020 16:49:31 GMT</pubDate></item><item><title><![CDATA[Reply to Troubles building and executing NPP on Sun, 04 Oct 2020 15:59:24 GMT]]></title><description><![CDATA[<p dir="auto">I’m having the exact same problem, this is my first “Build from Source” project, though… So I followed the README.txt, Boost binaries all compiled fine(1.70), Regex is compiled fine, but when I try to compile the scintilla.mak using the suggested parameters, I get a ton of compile errors in visual studio.  If I compile scintilla.mak without the parameters, scintilla compiles just fine, but the sciLexer.dll that it compiles isn’t recognized by NPP(Obviously because it’s not referenced to anything).  When I read the scintilla.mak file, the comments towards the bottom explicitly state the arguments to pass to NMake, they are identical to the README.txt instructions.  But again, when I pass the arguments to the NMake on scintilla.mak, I get a ton of warnings and it fails to compile.  I’ve triple checked my spelling and all that… and I run NMake from the VS console with the scintilla.proj file opened and with admin permissions. I also attempted to run NPP from the Debug build, and I have the same problems as the OP, nothing opens.  I’ll gather screenshots now and inject them into this comment if I can edit, but this is my first post so I might be limited, we’ll see.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/58213</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/58213</guid><dc:creator><![CDATA[Adam Lake]]></dc:creator><pubDate>Sun, 04 Oct 2020 15:59:24 GMT</pubDate></item><item><title><![CDATA[Reply to Troubles building and executing NPP on Sun, 04 Oct 2020 15:49:50 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/19975">@ErwanDelhoveUCL</a></p>
<p dir="auto">Do you have the necessary files in the same folder as the <code>notepad++.exe</code> you are trying to run?</p>
]]></description><link>https://community.notepad-plus-plus.org/post/58212</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/58212</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Sun, 04 Oct 2020 15:49:50 GMT</pubDate></item><item><title><![CDATA[Reply to Troubles building and executing NPP on Sun, 04 Oct 2020 14:22:30 GMT]]></title><description><![CDATA[<p dir="auto">I have another problem with the “debug” build version. When I execute notepad++.exe by clicking on it or in a command prompt, there is nothing showing up. No error, no warning, no content!<br />
<em>FYI, the version I try to launch is located at “\<a href="http://visual.net" rel="nofollow ugc">visual.net</a>\x64\Unicode Debug.”</em></p>
<p dir="auto">Another thing which looks strange to me is when I run the local debugger on the project, it goes to the file "Notepad_plus.h and show me this error:<br />
<img src="/assets/uploads/files/1601820989386-dd276692-6819-4746-b15e-82cc8f288a5d-image.png" alt="dd276692-6819-4746-b15e-82cc8f288a5d-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">When I try to look further, I got this other error which prevent me to further:<br />
<img src="/assets/uploads/files/1601821057833-49aea442-b4ea-4525-9702-abac471ce1e7-image.png" alt="49aea442-b4ea-4525-9702-abac471ce1e7-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">I 'm not sure if the first error trigger the second or the opposite but I’m pretty sure that they are related to the launch problem.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/58210</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/58210</guid><dc:creator><![CDATA[ErwanDelhoveUCL]]></dc:creator><pubDate>Sun, 04 Oct 2020 14:22:30 GMT</pubDate></item><item><title><![CDATA[Reply to Troubles building and executing NPP on Sun, 04 Oct 2020 13:38:21 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/19975">@ErwanDelhoveUCL</a></p>
<p dir="auto">You are probably running what you built in “release” build config.<br />
That build requires a “signed” Scintilla DLL.<br />
Since you don’t have a signed DLL, you are out of luck.</p>
<p dir="auto">Hint:  Build and run the “debug” build config.  This one doesn’t need the “signed” DLL.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/58206</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/58206</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Sun, 04 Oct 2020 13:38:21 GMT</pubDate></item></channel></rss>