|
From: Clive C. <cl...@cr...> - 2015-05-20 16:02:18
|
The errors I've experienced are on a box that's a fresh windows install
(server 2012) and then the following scripts executed in order to install
MinGW, after which it doesn't display errors.
So, to reproduce : Clean/New windows installation, then run the following:
:: Download
powershell -Command "(New-Object System.Net.WebClient).DownloadFile('
http://sourceforge.net/projects/mingw/files/Installer/mingw-get/mingw-get-0.6.2-beta-20131004-1/mingw-get-0.6.2-mingw32-beta-20131004-1-bin.zip/download',
'C:\Windows\Temp\mingw-get.zip')" <NUL
powershell -Command "(New-Object System.Net.WebClient).DownloadFile('
http://downloads.sourceforge.net/sevenzip/7z920-x64.msi',
'C:\Windows\Temp\7z920-x64.msi')" <NUL
:: Extract
msiexec /qb /i C:\Windows\Temp\7z920-x64.msi
cmd /c ""C:\Program Files\7-Zip\7z.exe" x C:\Windows\Temp\mingw-get.zip
-oC:\MinGW"
msiexec /qb /x C:\Windows\Temp\7z920-x64.msi
:: Update & Install Components
C:\MinGW\bin\mingw-get update
C:\MinGW\bin\mingw-get install mingw-get
C:\MinGW\bin\mingw-get upgrade --reinstall mingw-get
C:\MinGW\bin\mingw-get update
C:\MinGW\bin\mingw-get install gcc g++ mingw32-make zlib
On Wed, 20 May 2015 at 16:54 Eli Zaretskii <el...@gn...> wrote:
> > From: Clive Crous <cl...@cr...>
> > Date: Wed, 20 May 2015 08:59:56 +0000
> >
> > I'm having trouble with failed compiles not giving any output at all
> (unless
> > the input source file is completely missing).
> >
> > I've used mingw-get to install everything on my system, and it appears
> that
> > gcc/g++ simply don't output errors anymore? Is there something I'm
> missing
> > here?
> >
> > I've attached a screenshot.
>
> Looks like something is wrong with your cc1.exe, it doesn't even
> announce itself, as it should under -v.
>
>
> ------------------------------------------------------------------------------
> One dashboard for servers and applications across Physical-Virtual-Cloud
> Widest out-of-the-box monitoring support with 50+ applications
> Performance metrics, stats and reports that give you Actionable Insights
> Deep dive visibility with transaction tracing using APM Insight.
> http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
> _______________________________________________
> MinGW-users mailing list
> Min...@li...
>
> This list observes the Etiquette found at
> http://www.mingw.org/Mailing_Lists.
> We ask that you be polite and do the same. Disregard for the list
> etiquette may cause your account to be moderated.
>
> _______________________________________________
> You may change your MinGW Account Options or unsubscribe at:
> https://lists.sourceforge.net/lists/listinfo/mingw-users
> Also: mailto:min...@li...?subject=unsubscribe
>
|