forked from ckormanyos/real-time-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Begin the start of a prime numbers example.
- Loading branch information
1 parent
33b3b34
commit 664c846
Showing
121 changed files
with
13,878 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
|
||
@rem | ||
@rem Copyright Christopher Kormanyos 2014. | ||
@rem Distributed under the Boost Software License, | ||
@rem Version 1.0. (See accompanying file LICENSE_1_0.txt | ||
@rem or copy at http://www.boost.org/LICENSE_1_0.txt) | ||
@rem | ||
|
||
|
||
@rem | ||
@rem Usage: | ||
@rem build.bat directory_of_gcc_bin prefix_of_avr_gcc | ||
@rem For example, | ||
@rem build.bat "C:\Program Files (x86)\gcc-4.8.1-avr\bin" avr | ||
@rem | ||
|
||
@set TOOL_PATH=%1 | ||
@set TOOL_PREFIX=%2 | ||
|
||
@set CFLAGS=-Wall -Wextra -pedantic -mmcu=atmega328p -fsigned-char -O2 -fno-exceptions | ||
@set CPPFLAGS=-std=c++11 -fno-rtti -fstrict-enums -fno-use-cxa-atexit -fno-use-cxa-get-exception-ptr -fno-nonansi-builtins -fno-threadsafe-statics -fno-enforce-eh-specs | ||
@set CINCLUDES=-Isrc -Isrc/mcal/avr -Isrc/util/STL -Isrc/util/STL_C++11_Compatibility -Isrc/util/STL_C++17_Compatibility | ||
|
||
@echo. | ||
@echo.Building with : build.bat | ||
@echo.Using tool path : %TOOL_PATH% | ||
@echo.Using tool prefix : %TOOL_PREFIX% | ||
@echo.Create bin directory : bin\ | ||
@if not exist bin mkdir bin | ||
@echo.Clean bin directory : bin\*.o bin\chapter09_07*.* | ||
@if exist bin\*.o del /Q bin\*.o | ||
@if exist bin\chapter09_07*.* del /Q bin\chapter09_07*.* | ||
@echo. | ||
|
||
@echo.Compile : app_display.cpp to bin/app_display.o | ||
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x c++ %CFLAGS% %CPPFLAGS% %CINCLUDES% -c src/app/display/app_display.cpp -o bin/app_display.o | ||
|
||
@echo.Compile : mcal.cpp to bin/mcal.o | ||
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x c++ %CFLAGS% %CPPFLAGS% %CINCLUDES% -c src/mcal/mcal.cpp -o bin/mcal.o | ||
|
||
@echo.Compile : mcal_gcc_cxx_completion.cpp to bin/mcal_gcc_cxx_completion.o | ||
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x c++ %CFLAGS% %CPPFLAGS% %CINCLUDES% -c src/mcal/mcal_gcc_cxx_completion.cpp -o bin/mcal_gcc_cxx_completion.o | ||
|
||
@echo.Compile : mcal_cpu.cpp to bin/mcal_cpu.o | ||
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x c++ %CFLAGS% %CPPFLAGS% %CINCLUDES% -c src/mcal/avr/mcal_cpu.cpp -o bin/mcal_cpu.o | ||
|
||
@echo.Compile : mcal_display.cpp to bin/mcal_display.o | ||
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x c++ %CFLAGS% %CPPFLAGS% %CINCLUDES% -c src/mcal/avr/mcal_display.cpp -o bin/mcal_display.o | ||
|
||
@echo.Compile : mcal_gpt.cpp to bin/mcal_gpt.o | ||
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x c++ %CFLAGS% %CPPFLAGS% %CINCLUDES% -c src/mcal/avr/mcal_gpt.cpp -o bin/mcal_gpt.o | ||
|
||
@echo.Compile : mcal_irq.cpp to bin/mcal_irq.o | ||
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x c++ %CFLAGS% %CPPFLAGS% %CINCLUDES% -c src/mcal/avr/mcal_irq.cpp -o bin/mcal_irq.o | ||
|
||
@echo.Compile : mcal_led.cpp to bin/mcal_led.o | ||
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x c++ %CFLAGS% %CPPFLAGS% %CINCLUDES% -c src/mcal/avr/mcal_led.cpp -o bin/mcal_led.o | ||
|
||
@echo.Compile : mcal_osc.cpp to bin/mcal_osc.o | ||
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x c++ %CFLAGS% %CPPFLAGS% %CINCLUDES% -c src/mcal/avr/mcal_osc.cpp -o bin/mcal_osc.o | ||
|
||
@echo.Compile : mcal_port.cpp to bin/mcal_port.o | ||
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x c++ %CFLAGS% %CPPFLAGS% %CINCLUDES% -c src/mcal/avr/mcal_port.cpp -o bin/mcal_port.o | ||
|
||
@echo.Compile : mcal_wdg.cpp to bin/mcal_wdg.o | ||
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x c++ %CFLAGS% %CPPFLAGS% %CINCLUDES% -c src/mcal/avr/mcal_wdg.cpp -o bin/mcal_wdg.o | ||
|
||
@echo.Compile : os.cpp to bin/os.o | ||
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x c++ %CFLAGS% %CPPFLAGS% %CINCLUDES% -c src/os/os.cpp -o bin/os.o | ||
|
||
@echo.Compile : os.cpp to bin/os_task_control_block.o | ||
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x c++ %CFLAGS% %CPPFLAGS% %CINCLUDES% -c src/os/os_task_control_block.cpp -o bin/os_task_control_block.o | ||
|
||
@echo.Compile : sys_idle.cpp to bin/sys_idle.o | ||
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x c++ %CFLAGS% %CPPFLAGS% %CINCLUDES% -c src/sys/idle/sys_idle.cpp -o bin/sys_idle.o | ||
|
||
@echo.Compile : sys_mon.cpp to bin/sys_mon.o | ||
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x c++ %CFLAGS% %CPPFLAGS% %CINCLUDES% -c src/sys/mon/sys_mon.cpp -o bin/sys_mon.o | ||
|
||
@echo.Compile : sys_start.cpp to bin/sys_start.o | ||
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x c++ %CFLAGS% %CPPFLAGS% %CINCLUDES% -c src/sys/start/sys_start.cpp -o bin/sys_start.o | ||
|
||
@echo.Compile : crt0.cpp to bin/crt0.o | ||
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x c++ %CFLAGS% %CPPFLAGS% %CINCLUDES% -c target/micros/avr/startup/crt0.cpp -o bin/crt0.o | ||
|
||
@echo.Compile : crt0_init_ram.cpp to bin/crt0_init_ram.o | ||
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x c++ %CFLAGS% %CPPFLAGS% %CINCLUDES% -c target/micros/avr/startup/crt0_init_ram.cpp -o bin/crt0_init_ram.o | ||
|
||
@echo.Compile : crt1.cpp to bin/crt1.o | ||
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x c++ %CFLAGS% %CPPFLAGS% %CINCLUDES% -c target/micros/avr/startup/crt1.cpp -o bin/crt1.o | ||
|
||
@echo.Compile : int_vect.cpp to bin/int_vect.o | ||
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x c++ %CFLAGS% %CPPFLAGS% %CINCLUDES% -c target/micros/avr/startup/int_vect.cpp -o bin/int_vect.o | ||
|
||
@echo.Link : objects to bin/chapter09_07.elf | ||
@%TOOL_PATH%\%TOOL_PREFIX%-g++ -x none -mrelax -nostartfiles %CFLAGS% %CPPFLAGS% %CINCLUDES% -Wl,--gc-sections -Wl,-Ttarget/micros/avr/make/avr.ld,-Map,bin/chapter02_03.map bin/app_display.o bin/mcal.o bin/mcal_gcc_cxx_completion.o bin/mcal_cpu.o bin/mcal_display.o bin/mcal_gpt.o bin/mcal_irq.o bin/mcal_osc.o bin/mcal_port.o bin/mcal_wdg.o bin/os.o bin/os_task_control_block.o bin/sys_idle.o bin/sys_mon.o bin/sys_start.o bin/crt0.o bin/crt0_init_ram.o bin/crt1.o bin/int_vect.o -o bin/chapter09_07.elf | ||
|
||
@echo. | ||
@echo.Extract : executable hex file : from bin/chapter09_07.elf | ||
@%TOOL_PATH%\%TOOL_PREFIX%-objcopy -O ihex bin/chapter09_07.elf bin/chapter09_07.hex | ||
|
||
@echo.Extract : assembly list file : from bin/chapter09_07.elf | ||
@%TOOL_PATH%\%TOOL_PREFIX%-objdump -h -S bin/chapter09_07.elf > bin/chapter09_07.lss | ||
|
||
@echo.Extract : size information : from bin/chapter09_07.elf | ||
@%TOOL_PATH%\%TOOL_PREFIX%-size -A -t bin/chapter09_07.elf > bin\chapter09_07_size.txt | ||
|
||
@echo.Extract : name information : from bin/chapter09_07.elf | ||
@%TOOL_PATH%\%TOOL_PREFIX%-nm --numeric-sort --print-size bin/chapter09_07.elf > bin\chapter09_07_nm.txt | ||
|
||
@echo.Extract : demangled names : from bin/chapter09_07.elf | ||
@%TOOL_PATH%\%TOOL_PREFIX%-nm --numeric-sort --print-size bin/chapter09_07.elf | %TOOL_PATH%\%TOOL_PREFIX%-c++filt > bin\chapter09_07_cppfilt.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio 15 | ||
VisualStudioVersion = 15.0.27130.2026 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "target", "target.vcxproj", "{30CE370B-40F3-4BCD-8986-64AAFF8971BD}" | ||
EndProject | ||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "chapter03_02", "chapter03_02.vcxproj", "{C8B59726-9319-45C3-8F11-F9F388FB6A2C}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Win32 = Debug|Win32 | ||
Debug|x64 = Debug|x64 | ||
Release|Win32 = Release|Win32 | ||
Release|x64 = Release|x64 | ||
target avr|Win32 = target avr|Win32 | ||
target avr|x64 = target avr|x64 | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{30CE370B-40F3-4BCD-8986-64AAFF8971BD}.Debug|Win32.ActiveCfg = target avr|Win32 | ||
{30CE370B-40F3-4BCD-8986-64AAFF8971BD}.Debug|x64.ActiveCfg = target avr|x64 | ||
{30CE370B-40F3-4BCD-8986-64AAFF8971BD}.Release|Win32.ActiveCfg = target avr|Win32 | ||
{30CE370B-40F3-4BCD-8986-64AAFF8971BD}.Release|x64.ActiveCfg = target avr|x64 | ||
{30CE370B-40F3-4BCD-8986-64AAFF8971BD}.target avr|Win32.ActiveCfg = target avr|Win32 | ||
{30CE370B-40F3-4BCD-8986-64AAFF8971BD}.target avr|Win32.Build.0 = target avr|Win32 | ||
{30CE370B-40F3-4BCD-8986-64AAFF8971BD}.target avr|x64.ActiveCfg = target avr|x64 | ||
{30CE370B-40F3-4BCD-8986-64AAFF8971BD}.target avr|x64.Build.0 = target avr|x64 | ||
{C8B59726-9319-45C3-8F11-F9F388FB6A2C}.Debug|Win32.ActiveCfg = Debug|Win32 | ||
{C8B59726-9319-45C3-8F11-F9F388FB6A2C}.Debug|Win32.Build.0 = Debug|Win32 | ||
{C8B59726-9319-45C3-8F11-F9F388FB6A2C}.Debug|x64.ActiveCfg = Debug|x64 | ||
{C8B59726-9319-45C3-8F11-F9F388FB6A2C}.Debug|x64.Build.0 = Debug|x64 | ||
{C8B59726-9319-45C3-8F11-F9F388FB6A2C}.Release|Win32.ActiveCfg = Release|Win32 | ||
{C8B59726-9319-45C3-8F11-F9F388FB6A2C}.Release|Win32.Build.0 = Release|Win32 | ||
{C8B59726-9319-45C3-8F11-F9F388FB6A2C}.Release|x64.ActiveCfg = Release|x64 | ||
{C8B59726-9319-45C3-8F11-F9F388FB6A2C}.Release|x64.Build.0 = Release|x64 | ||
{C8B59726-9319-45C3-8F11-F9F388FB6A2C}.target avr|Win32.ActiveCfg = Release|Win32 | ||
{C8B59726-9319-45C3-8F11-F9F388FB6A2C}.target avr|x64.ActiveCfg = Release|x64 | ||
{C8B59726-9319-45C3-8F11-F9F388FB6A2C}.target avr|x64.Build.0 = Release|x64 | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(ExtensibilityGlobals) = postSolution | ||
SolutionGuid = {8CFDC2A7-A7FC-4873-938C-36790C50E02D} | ||
EndGlobalSection | ||
EndGlobal |
Oops, something went wrong.