I'm trying to bringup gcc-linaro-7.3.1 on windows.
I've downloaded gcc-linaro-7.3.1-2018.05-i686-mingw32_aarch64-linux-gnu.tar from Linaro site, extracted using tar on Cygwin, but when I try to run "aarch64-linux-gnu-gcc.exe" it seems that nothing happens.
when I try to run from Windows cmd, I get an error "The application was unable to start correctly (0xc0000022)".
any Ideas?
Related
I am using ubuntu in windows by WSL. I have installed gnu gcc and various required files required to develop a basic Operating System.
Actually I have installed from this link.
But whenever I try to run command 'i386-elf-gcc', it shows command not found. Interestingly if I run export PATH="$PATH:/usr/local/i386elfgcc/bin" this command from that terminal and rerun 'i386-elf-gcc' it works correctly. This happens every time I try to run the command in a new terminal.
I need to get rid of this problem. What can I do?
I am having issues compiling this project on zephyr.js, the instructions on their GitHub are for Linux however they do have an environment setup for Windows as well which I have completed to the letter.
When I run the compilation using the makefile I get:
CMake C:/IntelSWTools/ISSM_2016/tools/compiler/gcc-ia/5.2.1/bin/i586-intel-elfiamcu-gcc is not a full path to an existing compiler tool.
I am using the msys terminal with MinGW and I have installed CMake separately and configured it... but why is it throwing this error? I have checked, and the file is actually there. If I type C:/IntelSWTools/ISSM_2016/tools/compiler/gcc-ia/5.2.1/bin/i586-intel-elfiamcu-gcc. into the terminal, it also executes the compiler successfully.
Any ideas?
(Before anyone tells me to try on Linux, for now, it is a requirement to use Windows for this project)
I have a C# application developed using mono 3.0.6. Everything works perfectly.
I need to deploy this application to production desktops where I'm not allowed to install mono. So, I decided to use mkbundle, using the command
mkbundle -o myprog --deps --static myprog.exe
On the destination desktop, when I try to execute myprog, it gives me
Unhandled Exception: System.DllNotFoundException: libc
Obviously, both origin and target machines uses the same OpenSuse, except for the fact that target has no mono installed.
What is supposed I'm missing?
TIA.
I am attempting to download an older version of Cygwin (1.7.16) in order to compile an open source project (Dummynet - windows port).
The only way i found of doing so is by using a project known as Cygwin Time Machine.
In order to use this i downloaded the cygwin 1.7 installer from 'ftp://www.fruitbat.org/pub/cygwin/setup/1.7/setup-1.7.exe', and when prompted for a download site, added 'ftp://www.fruitbat.org/pub/cygwin/circa/2012/08/20/222043'. However, the download fails with the following error :
Unable to get setup-2.ini from
ftp://www.fruitbat.org/pub/cygwin/circa/2012/08/20/222043
Im looking for help in getting past this error, or any other alternative way of installing Cywgin 1.7.16 (Aug 20, 2012).
The Admin at Cygwin Time Machine was kind enough to point me to the solution. The issue can be resolved by downloading the cygwin setup exe from cygwin.com/setup-x86.exe and starting it with the -X option. Once started, one may choose any cygwin 1.7.* snapshot url from the cygwin time machine site and add that as the mirror to download and install cygwin from.
How does one install web2py on Windows XP using cygwin? I've just installed cygwin and downloaded web2py in cygwin using
curl -O http://www.web2py.com/examples/static/web2py_src.zip
but when I try to unzip it using
unzip web2py_src.zip
it doesn't work (returns the error: -bash: unzip: command not found)
What do I do?
I was actually trying to open web2py from cygwin command prompt. Instead I used Windows CMD (after a day's crash course on it) and have been able to open web2py from the WCMD. I simply cd'd to the directory web2py was (I moved it from Downloads to drive C), then ran the -S projectname command, and voila, my project has been created and I'm able to work from the WCMD.Please I may be asking more questions as my journey progresses. Thanks to Regexident for your swift attempt to help!