Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion RosBE-Windows/Powershell/RosBE.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ $ENV:CCACHE_SLOPPINESS = "time_macros"

# Fix Bison package path (just in case RosBE is installed in a path which contains spaces) and add M4 path to a env var
$ENV:BISON_PKGDATADIR = ((New-Object -ComObject Scripting.FileSystemObject).GetFolder("$_ROSBE_BASEDIR\share\bison")).ShortPath
$ENV:M4 = ((New-Object -ComObject Scripting.FileSystemObject).GetFile("$_ROSBE_BASEDIR\bin\m4.exe")).ShortPath
$ENV:M4 = "m4.exe"

# Get the number of CPUs in the system so we know how many jobs to execute.
# To modify the number used, see the cpucount usage for getting to know about the possible options
Expand Down
13 changes: 6 additions & 7 deletions RosBE-Windows/Root/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
*** Jun xxth, 2021 - RosBE 2.3.0 Released
*** Jan xxth, 2026 - RosBE 2.3.0 Released

- Readded forgotten 7z.dll to setup. Fixes ROSBE-171 (Daniel Reimer)
- Fixed build problems of some testers by going from "core2" cpu optimize to "nocona" optimize. (Daniel Reimer)
- Added GMP as separate libs to RosBE's compiler suite. (Daniel Reimer)
- Added Windows experimental plugin support to RosBE's compiler suite.
Needed for Jérôme Gardou's x64 PSEH plugin support. (Daniel Reimer)

Needed patches for GCC, binutils and ninja can be found here: https://www.dreimer.de/?p=1582
- Full 64 Bit RosBE Setup thanks to https://github.com/negrutiu/nsis (Daniel Reimer)
- Massive cleanup and easier to use NSIS Script. Mostly just copy a RosBE InstallDir and start the scripts (Daniel Reimer)
- 64 Bit Fixes for a few included Tools (Justin Miller, Carl Bialorucki Timo Kreuzer)
- New GCCs for 32 and 64 Bit.
- Inluded Tools updated to newest versions. CMake to last 3.X Version available (Daniel Reimer)

*** Jun 05th, 2020 - RosBE 2.2.1 Released

Expand Down
Binary file modified RosBE-Windows/Root/README.odt
Binary file not shown.
Binary file modified RosBE-Windows/Root/README.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion RosBE-Windows/Root/RosBE.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ set CCACHE_SLOPPINESS=time_macros

:: Fix Bison package path (just in case RosBE is installed in a path which contains spaces) and add M4 path to a env var
set BISON_PKGDATADIR=%~ds0%~sp0%share\bison
set M4=%~ds0%~sp0%bin\m4.exe
set M4=m4.exe
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't this be a full path?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't this be a full path?

M4 does not launch correctly if full path is specified. But since M4 is in PATH both when you run RosBE or have it in PATH when you compile via clang-cl or MSVC, it's not required to have full path supplied. See this message with build log file in RosBE channel at Mattermost.


:: Get the number of CPUs in the system so we know how many jobs to execute.
:: To modify the number used, see the cpucount usage for getting to know about the possible options
Expand Down
14 changes: 0 additions & 14 deletions RosBE-Windows/RosBE.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -168,26 +168,15 @@ Section -BaseFiles SEC01
File /r RosBE\bin\chknewer.exe
File /r RosBE\bin\chkslash.exe
File /r RosBE\bin\cmake.exe
;File /r RosBE\bin\cmcldeps.exe
File /r RosBE\bin\cmp.exe
;File /r RosBE\bin\cpack.exe
File /r RosBE\bin\cpucount.exe
;File /r RosBE\bin\ctest.exe
File /r RosBE\bin\diff.exe
File /r RosBE\bin\diff3.exe
File /r RosBE\bin\echoh.exe
File /r RosBE\bin\flash.exe
File /r RosBE\bin\flex.exe
File /r RosBE\bin\flex++.exe
;File /r RosBE\bin\gdb.exe
;File /r RosBE\bin\gdbserver.exe
File /r RosBE\bin\getdate.exe
;File /r RosBE\bin\libgcc_s_dw2-1.dll
;File /r RosBE\bin\libstdc++-6.dll
;File /r RosBE\bin\libwinpthread-1.dll
;File /r RosBE\bin\log2lines.exe
File /r RosBE\bin\m4.exe
;File /r RosBE\bin\mingw32-make.exe
File /r RosBE\bin\msys-2.0.dll
File /r RosBE\bin\msys-gnutls-30.dll
File /r RosBE\bin\msys-iconv-2.dll
Expand All @@ -202,15 +191,12 @@ Section -BaseFiles SEC01
File /r RosBE\bin\options.exe
File /r RosBE\bin\patch.exe
File /r RosBE\bin\patch.exe.manifest
;File /r RosBE\bin\pexports.exe
;File /r RosBE\bin\piperead.exe
File /r RosBE\bin\playwav.exe
File /r RosBE\bin\rquote.exe
File /r RosBE\bin\scut.exe
File /r RosBE\bin\sdiff.exe
File /r RosBE\bin\tee.exe
File /r RosBE\bin\wget.exe
;File /r RosBE\bin\zlib1.dll
SetOutPath "$INSTDIR\samples"
SetOverwrite try
File /r RosBE\samples\*.*
Expand Down