manual:chapter1:buildfromsource

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
manual:chapter1:buildfromsource [2017/12/25 07:17]
claudio [Building the firmware]
manual:chapter1:buildfromsource [2019/11/20 14:45] (current)
jojo1973
Line 1: Line 1:
-====== Building newRPL from source code ======+===== Building newRPL from source code =====
  
- +==== Preparing a system for compiling the simulator ====
-===== Preparing a system for compiling the simulator =====+
  
 **Linux** **Linux**
  
-The following instructions are for Ubuntu, package names might change slightly on other distros.+The following instructions are for //Ubuntu//, package names might change slightly on other distros.
  
-Packages to install (either use synaptic package manager, or apt):+Packages to install (either use //synaptic// package manager, or //apt//):
  
 +<code>
 git git
 libelf-dev libelf-dev
 libudev-dev libudev-dev
 +</code>
  
 If using other distros, verify that these other packages are installed: If using other distros, verify that these other packages are installed:
 +<code>
 gcc gcc
 g++ g++
 libc6-dev libc6-dev
 +</code>
  
-and for Qt, some 3D related headers (even though not used by newRPL) are needed, therefore these packages need to be installed as  well: +and for //Qt//, some 3D related headers (even though not used by **newRPL**) are needed, therefore these packages need to be installed as  well: 
 +<code>
 libgl-dev libgl-dev
 +</code>
  
 +Time to install the //Qt// framework.
  
-Time to install the Qt framework, go to [[http://qt-project.org]] and download the open source version. It will download a file named 'qt-unified-....'change the permissions to allow executing it as a program and run it to install Qt. +  - Go to [[http://qt-project.org]] and download the open source version. It will download a file named ''qt-unified-...''; 
-When it's time to select components, install the latest Qt version (5.10.0 at the time of this writing), the only component needed is the one labeled "Desktop gcc 64-bits".+  - change the permissions to allow executing it as a program and run it to install //Qt//; 
 +  - when it's time to select components, it's very important to open the lists and select a library version and target. **The installer will not select a library version by default**, and failing to select one will leave you without a proper library and unable to build **newRPL**. Select the latest //Qt// version (5.10.0 at the time of this writing), the only component needed is the one labeled ''Desktop gcc 64-bits''. Make sure at least that component is checked.
  
-===== Preparing a system for cross-compiling the firmware =====+**freeBSD**
  
-**Linux**+In order to use //Qt Creator//, a graphical desktop needs to be installed (that's outside the scope of this article).
  
-The following instructions are for Ubuntu, package names might change slightly on other distros.+Packages to install (either using //pkg// or //OctoPkg//):
  
-Packages to install (either use synaptic package manager, or apt):+<code> 
 +git 
 +qt5 
 +qtcreator 
 +</code>
  
-gcc-arm-none-eabi+And that's all that's required. 
 + 
 +For developers wishing to cooperate with the project, another package is needed: 
 +<code> 
 +gdb 
 +</code>
  
-Other packages like binutils-arm-none-eabi will be installed automaticallyon other distros this might be different and it needs to be installed separately.+Once the packages are installed, 
 +  start //Qt Creator//, and navigate the menus and dialogs through ''Tools'', ''Options...'', ''Build&Run'', ''Kits'' and select the ''Desktop'' (default) configuration; 
 +  verify that everything is populated, and change the Debugger to ''System GDB at /usr/local/bin/gdb'' which is the version of gdb that was just installed. This is needed only to debug the code, not needed if the objective is simply to have a running version of **newRPL Desktop**.
  
  
-===== Getting the source code =====+==== Preparing a system for cross-compiling the firmware ====
  
 **Linux** **Linux**
  
-While at your user's homeopen a terminal and run:+The following instructions are for //Ubuntu//package names might change slightly on other distros.
  
-git clone https://git.code.sf.net/p/newrpl/sources newrpl-sources+Packages to install (either use //synaptic// package manager, or //apt//): 
 +<code> 
 +gcc-arm-none-eabi 
 +</code>
  
 +Other packages like
 +<code>
 +binutils-arm-none-eabi
 +</code>
 +will be installed automatically, on other distros this might be different and it needs to be installed separately.
  
 +**freeBSD**
  
-===== Building the tools =====+Packages to install (either use //pkg// or //OctoPkg//): 
 +<code> 
 +arm-none-eabi-gcc 
 +</code>
  
-==== elf2rom ==== 
  
-The first tool that needs building is elf2rom.+==== Getting the source code ====
  
-Open Qt Creator, select Open Project, and go into newrpl-sources/tools/elf2rom, then select the elf2rom.pro project file.+**Linux** and **freeBSD**
  
-When prompted, just click on 'Configure project'+While at your user's homeopen terminal and run:
-At the bottom-left of the screenthere will be an icon that looks like screen and shows 'Debug'. Change it to 'Release'+
-On the left toolbox, select the wrench 'Projects' to access the build settings. +
-Make sure 'Release' is the selected configuration, then 'Add Build Step' / 'Make', and in the 'Make arguments:' box type 'install' (without quotes). +
-Now from the top menu, 'Build', 'Run QMake', then 'Rebuild All'+
-From the bottom of the screen, check the 'Compile Output' pane to see if everything went well. Quite often, the last step 'make install' says there's nothing new to install when there's actually a newly built executable. Another round of 'Run QMake' and 'Rebuild All' usually shows in the output pane that the file is being copied to newrpl/tools-bin which is the expected result.+
  
-It's done, the elf2rom tool was built and installed in the appropriate location to be used by the other projectsSelect 'Close all projects and editorsfrom the main menu to end the session.+''git clone https://git.code.sf.net/p/newrpl/sources newrpl-sources''
  
-==== newRPL standalone compiler ====+----
  
-Open Qt Creator, select Open Project, and go into newrpl-sources, then select the newrpl-comp.pro project file.+==== Building the tools ====
  
-When prompted, just click on 'Configure project'+=== elf2rom ===
-At the bottom-left of the screen, there will be an icon that looks like a screen and shows 'Debug'. Change it to 'Release'+
-On the left toolbox, select the wrench 'Projects' to access the build settings. +
-Make sure 'Release' is the selected configuration, then 'Add Build Step' / 'Make', and in the 'Make arguments:' box type 'install' (without quotes). +
-Now from the top menu, 'Build', 'Run QMake', then 'Rebuild All'+
-From the bottom of the screen, check the 'Compile Output' pane to see if everything went well. Quite often, the last step 'make install' says there's nothing new to install when there's actually a newly built executable. Another round of 'Run QMake' and 'Rebuild All' usually shows in the output pane that the file is being copied to newrpl/tools-bin which is the expected result.+
  
-Finished, the newrpl-comp tool was built and installed in the appropriate location to be used by the other projects.+The first tool that needs building is ''elf2rom''.
  
-===== Building the Desktop simulator =====+  - Open //Qt Creator//, select ''Open Project'', and go into ''newrpl-sources/tools/elf2rom''; 
 +  - select the ''elf2rom.pro'' project file; 
 +  - when prompted, just click on ''Configure project''; 
 +  - at the bottom-left of the screen, there will be an icon that looks like a screen and shows ''Debug'': change it to ''Release''; 
 +  - on the left toolbox, select the wrench ''Projects'' to access the build settings; 
 +  - make sure ''Release'' is the selected configuration, then ''Add Build Step'' / ''Make'', and in the ''Make arguments:'' box type ''install''; 
 +  - now from the top menu, ''Build'', ''Run QMake'', then ''Rebuild All''; 
 +  - from the bottom of the screen, check the ''Compile Output'' pane to see if everything went well. Quite often, the last step ''make install'' says there's nothing new to install when there's actually a newly built executable. Another round of ''Run QMake'' and ''Rebuild All'' usually shows in the output pane that the file is being copied to ''newrpl/tools-bin'' which is the expected result.
  
-Open Qt Creator, select Open Project, and go into newrpl-sources, then select the newrpl-comp.pro project file.+It's done: the ''elf2rom'' tool was built and installed in the appropriate location to be used by the other projectsSelect ''Close all projects and editors'' from the main menu to end the session.
  
-When prompted, just click on 'Configure project'+=== bmp2font ===
-At the bottom-left of the screen, there will be an icon that looks like a screen and shows 'Debug'. Change it to 'Release'+
-Now from the top menu, 'Build', 'Run QMake', then 'Rebuild All'+
-From the bottom of the screen, check the 'Compile Output' pane to see if everything went well. There might be some warnings, but there should be no hard errors.+
  
-At the lower left area of the screen, use the upper 'Playbutton (Run without debugging) to start the application.+  - Open //Qt Creator//, select ''Open Project'', and go into ''newrpl-sources/tools/fonts/bmp2font''; 
 +  - select the ''bmp2font.pro'' project file; 
 +  - when prompted, just click on ''Configure project''; 
 +  - at the bottom-left of the screen, there will be an icon that looks like a screen and shows ''Debug'': change it to ''Release''; 
 +  - on the left toolbox, select the wrench ''Projects'' to access the build settings; 
 +  - make sure ''Release'' is the selected configuration, then ''Add Build Step'' / ''Make'', and in the ''Make arguments:'' box type ''install''; 
 +  - now from the top menu, ''Build'', ''Run QMake'', then ''Rebuild All''; 
 +  - from the bottom of the screen, check the ''Compile Output'' pane to see if everything went well. Quite often, the last step ''make install'' says there's nothing new to install when there's actually a newly built executable. Another round of ''Run QMake'' and ''Rebuild All'' usually shows in the output pane that the file is being copied to ''newrpl/tools-bin'' which is the expected result.
  
-===== Building the firmware =====+It's done: the ''bmp2font'' tool was built and installed in the appropriate location to be used by the other projects. Select ''Close all projects and editors'' from the main menu to end the session.
  
-Open Qt Creator, select Open Project, and go into newrpl-sources, then select the newrpl-fw.pro project file for the 50g target. Other project files are available for the other targets, follow exactly the same instructions for all targets.+=== newRPL standalone compiler ===
  
-When prompted, just click on 'Configure project'.+  - Open //Qt Creator//, select ''Open Project'', and go into ''newrpl-sources''; 
 +  - select the ''newrpl-comp.pro'' project file; 
 +  - when prompted, just click on ''Configure project''; 
 +  - at the bottom-left of the screen, there will be an icon that looks like a screen and shows ''Debug'': change it to ''Release''; 
 +  - on the left toolbox, select the wrench ''Projects'' to access the build settings; 
 +  - make sure ''Release'' is the selected configuration, then ''Add Build Step'' / ''Make'', and in the ''Make arguments:'' box type ''install''; 
 +  - now from the top menu, ''Build'', ''Run QMake'', then ''Rebuild All''; 
 +  - from the bottom of the screen, check the ''Compile Output'' pane to see if everything went well. Quite often, the last step ''make install'' says there's nothing new to install when there's actually a newly built executable. Another round of ''Run QMake'' and ''Rebuild All'' usually shows in the output pane that the file is being copied to ''newrpl/tools-bin'' which is the expected result.
  
-Open a Terminal window and type:+It's donethe ''newrpl-comp'' tool was built and installed in the appropriate location to be used by the other projects. Select ''Close all projects and editors'' from the main menu to end the session.
  
-arm-none-eabi-gcc -print-libgcc-file-name+----
  
-It will print the full path to a file called libgcc.a. Remember that path (without the file /libgcc.a). Back to Qt Creator, from the left pane open the file newrpl-fw.pro, and scroll down to a line that reads:+==== Building the newRPL desktop simulator ====
  
-GCC_LIBDIR = xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx+  - Open //Qt Creator//, select ''Open Project'', and go into ''newrpl-sources''; 
 +  - select the ''newrpl-ui.pro'' project file; 
 +  - when prompted, just click on ''Configure project''; 
 +  - at the bottom-left of the screen, there will be an icon that looks like a screen and shows ''Debug'': change it to ''Release''; 
 +  - on the left toolbox, select the wrench ''Projects'' to access the build settings; 
 +  - make sure ''Release'' is the selected configuration, then ''Add Build Step'' / ''Make'', and in the ''Make arguments:'' box type ''install''; 
 +  - now from the top menu, ''Build'', ''Run QMake'', then ''Rebuild All''; 
 +  - from the bottom of the screen, check the ''Compile Output'' pane to see if everything went well. Quite often, the last step ''make install'' says there's nothing new to install when there's actually a newly built executable. Another round of ''Run QMake'' and ''Rebuild All'' usually shows in the output pane that the file is being copied to ''newrpl-sources'' which is the expected result.
  
-Change that path to match exactly the path we got from the previous step.+It's done: the ''newrpl-ui'' tool was built and installed in the appropriate location to be used by the other projects. Select ''Close all projects and editors'' from the main menu to end the session.
  
-One last check, the line that reads:+At the lower left area of the screenuse the upper //Play// button (Run without debugging) to start the application.
  
 +==== Building the firmware ====
 +
 +  - Open //Qt Creator//, select ''Open Project'', and go into ''newrpl-sources'', then select the relevant project file: ''newrpl-fw.pro'' for the **50g** target, ''newrpl-fw39.pro'' for the **39g+ / 39gs** target, ''newrpl-fw40.pro'' for the **40gs** target;
 +  - when prompted, just click on ''Configure project'';
 +  - open a Terminal window and type<code>
 +arm-none-eabi-gcc -print-libgcc-file-name
 +</code>It will print the full path to a file called ''libgcc.a''. Remember that path (without the ''/libgcc.a'' part);
 +  - back to //Qt Creator//, from the left pane open the file ''newrpl-fw.pro'', and scroll down to a line that reads<code>
 +GCC_LIBDIR = xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</code>Change that path to match exactly the path we got from the previous step;
 +  - one last check: locate the line that reads<code>
 INCLUDEPATH += firmware/include newrpl xxxxxxxxxxxxxxx INCLUDEPATH += firmware/include newrpl xxxxxxxxxxxxxxx
 +</code>The ''xxxxxxxxxxxxxxx'' should point to suitable headers. In particular on a 64-bit system the system headers might be incompatible and cause errors. The first attempt should be to keep the defaults, and if any errors appear, to change it to ''/usr/include/newlib'' (or wherever there's a suitable 32-bit library). While **newRPL** will not link to or use the library in any way, some standard headers are expected to provide definitions;
 +  - another possible alternative for 64-bit systems is to install the package<code>
 +libc6-dev-i386
 +</code> which in most cases should allow to keep the default directories. For //Ubuntu// it works with the defaults, for other systems change that to ''/usr/include/newlib'', so the line reads<code>
 +INCLUDEPATH += firmware/include newrpl /usr/include/newlib</code>
 +  - save and close the file;
 +  - now from the top menu, ''Build'', ''Run QMake'', then ''Rebuild All'';
 +  - from the bottom of the screen, check the ''Compile Output'' pane to see if everything went well. There might be some warnings, but there should be no hard errors. There could be many warnings, depending on your version of //gcc// and your system: these warnings change all the time but they are harmless.
 +  
 +To verify that it completed the build, the last output line should read
  
-The xxxxxxxxxxxxxx should point to suitable headersFor Ubuntu, change that to /usr/include/newlib, so the line reads:+''Binary image written to "newrplfw.bin"'' (for HP50g target) or\\ 
 +''Binary image written to "newrpl39.bin"'' (for HP39g+ 39gs target) or\\ 
 +''Binary image written to "newrpl40.bin"'' (for HP40gs target)
  
-INCLUDEPATH += firmware/include newrpl /usr/include/newlib+If you see that line, everything went well, and your build directory (usually named ''build-newrpl-fw-Desktop...'') will contain the firmware file, which is the ROM that needs to be flashed on the calculator.
  
-If you are compiling on a 32-bit Linux, you might keep the line pointing to /usr/include, which will use the host system's headers. On a 64-bit system those headers will be incompatible therefore it needs to be changed to /usr/include/newlib (or wherever there's a suitable 32-bit library). While newRPL will not link to or use the library in any way, some standard headers are expected to provide definitions.+----
  
-Save and close the file.  +==== Updating the source tree to a new version ====
-Now from the top menu, 'Build', 'Run QMake', then 'Rebuild All'+
-From the bottom of the screen, check the 'Compile Output' pane to see if everything went well. There might be some warnings, but there should be no hard errors. There could be many warnings, depending on your version of gcc and your system these warnings change all the time but they are harmless. +
-To verify that it completed the build, the last output line should read:+
  
-Binary image written to "newrplfw.bin"+When updates are made to the source tree
  
-If you see that line, everything went well, and your build directory (usually named build-newrpl-fw-Desktop....) will contain the newrplfw.bin filewhich is the ROM that needs to be flashed on the calculator.+  - open a terminal session and go inside the main source directory (usually ''newrpl-sources''), and issue<code> 
 +git pull 
 +</code>This will update the source code to the lastest version; 
 +  - [[buildfromsource#newrpl-standalone-compiler|build the standalone compiler]] and check the compile output to make sure the new version was copied to ''newrpl/tools-bin''if not then repeat the steps ''Run QMake'' and ''Rebuild all''; 
 +  - with the updated compiler in place, close all projects and [[buildfromsource#building-the-newrpl-desktop-simulator|rebuild the desktop simulator]]. The ''Run QMake'' step is not optional, it needs to be manually executed to make sure the build number is updated, otherwise the ''[[manual:chapter6:system:cmd_version|VERSION]]'' command will report the incorrect build number; 
 +  - finally, close all projects and [[buildfromsource#building-the-firmware|rebuild the firmware]].
  • manual/chapter1/buildfromsource.1514215044.txt.gz
  • Last modified: 2017/12/25 07:17
  • by claudio