Howdy,
I need to develop a bit for the A20. 20+ years experience in the win world, now starting on Linux. So please bear with me :-)
As development machine, I have a Windows8/64 bit install with VMware 10.
Which Debian Version/ processor architecture should I install in the VM?
Thanks
Oskar
Quote from: oskaratk on November 08, 2013, 06:14:57 AM
As development machine, I have a Windows8/64 bit install with VMware 10.
Which Debian Version/ processor architecture should I install in the VM?
Because VMware is a virtualization stack and NOT an emulator the only option you have is to install an x86 arch distribution, 32 or 64 bit.
Go with a fresh Debian 7 (wheezy) setup then update the system:
apt-get update
apt-get upgrade
Set your time zone properly:
dpkg-reconfigure tzdata
Then be shure to have all development tools:
apt-get install build-essential
apt-get install gawk bison flex curl autoconf automake libncurses5-dev pkg-config
apt-get install gettext libtool git gperf libgmp3-dev libmpc-dev nvi subversion
apt-get install dosfstools unzip
Now you will also need a cross compiler toolchain suitable for your target. Follow this recent Olimex blog post to get an idea:
- https://olimex.wordpress.com/2013/11/05/building-the-ultimate-debian-sd-card-for-linux-with-kernel-3-4-for-a20-olinuxino-micro/
Thanks,
very helpful
Oskar
Are you folks using any kind of developer IDE ( like codelite ) or all text editor and command line ?
Oskar