Olimex Support Forum

OLinuXino Android / Linux boards and System On Modules => A20 => Topic started by: oskaratk on November 08, 2013, 06:14:57 AM

Title: Development Environment Windows/Debian
Post by: oskaratk on November 08, 2013, 06:14:57 AM
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
Title: Re: Development Environment Windows/Debian
Post by: giovanni.v on November 08, 2013, 03:30:30 PM
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/
Title: Re: Development Environment Windows/Debian
Post by: oskaratk on November 08, 2013, 06:34:13 PM
Thanks,

very helpful

Oskar
Title: Re: Development Environment Windows/Debian
Post by: oskaratk on November 08, 2013, 08:31:03 PM
Are you folks using any kind of developer IDE ( like codelite ) or all text editor and command line ?

Oskar