Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
Firmware
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alberto Ruiz Garcia
Firmware
Commits
94dcced6
Commit
94dcced6
authored
9 years ago
by
gcarmix
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' into master
parents
68a5534a
8b12845f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Vagrantfile
+6
-1
6 additions, 1 deletion
Vagrantfile
cmake/toolchains/Toolchain-hexagon-7.2.10.cmake
+15
-2
15 additions, 2 deletions
cmake/toolchains/Toolchain-hexagon-7.2.10.cmake
src/lib/dspal
+1
-1
1 addition, 1 deletion
src/lib/dspal
with
22 additions
and
4 deletions
Vagrantfile
+
6
−
1
View file @
94dcced6
...
...
@@ -33,11 +33,14 @@ Vagrant.configure(2) do |config|
# your network.
# config.vm.network "public_network"
# Virtualbox requires a private network to use NFS
config
.
vm
.
network
"private_network"
,
type:
"dhcp"
# Share an additional folder to the guest VM. The first argument is
# the path on the host to the actual folder. The second argument is
# the path on the guest to mount the folder. And the optional third
# argument is a set of non-required options.
config
.
vm
.
synced_folder
"."
,
"/Firmware"
config
.
vm
.
synced_folder
"."
,
"/Firmware"
,
type:
"nfs"
# Provider-specific configuration so you can fine-tune various
# backing providers for Vagrant. These expose provider-specific options.
...
...
@@ -85,6 +88,8 @@ Vagrant.configure(2) do |config|
tar -jxf gcc-arm-none-eabi-4_8-2014q3-20140805-linux.tar.bz2
exportline="export PATH=$HOME/gcc-arm-none-eabi-4_8-2014q3/bin:
\$
PATH"
if grep -Fxq "$exportline" ~/.profile; then echo nothing to do ; else echo $exportline >> ~/.profile; fi
exportline2="export HEXAGON_TOOLS_ROOT=$HOME/Qualcomm/HEXAGON_Tools/7.2.10/Tools"
if grep -Fxq "$exportline2" ~/.profile; then echo nothing to do ; else echo $exportline2 >> ~/.profile; fi
. ~/.profile
popd
# setup ccache
...
...
This diff is collapsed.
Click to expand it.
cmake/toolchains/Toolchain-hexagon-7.2.10.cmake
+
15
−
2
View file @
94dcced6
...
...
@@ -34,8 +34,12 @@ include(CMakeForceCompiler)
list
(
APPEND CMAKE_MODULE_PATH
${
CMAKE_SOURCE_DIR
}
/cmake
)
include
(
common/px4_base
)
if
(
NOT HEXAGON_TOOLS_ROOT
)
set
(
HEXAGON_TOOLS_ROOT $ENV{HOME}/Qualcomm/HEXAGON_Tools/7.2.10/Tools
)
if
(
"$ENV{HEXAGON_TOOLS_ROOT}"
STREQUAL
""
)
message
(
FATAL_ERROR
"The HexagonTools version 7.2.10 must be installed and the environment variable HEXAGON_TOOLS_ROOT must be set"
"(e.g. export HEXAGON_TOOLS_ROOT=/opt/HEXAGON_Tools/7.2.10/Tools)"
)
else
()
set
(
HEXAGON_TOOLS_ROOT $ENV{HEXAGON_TOOLS_ROOT}
)
endif
()
macro
(
list2string out in
)
...
...
@@ -239,3 +243,12 @@ set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
# for libraries and headers in the target directories
set
(
CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY
)
set
(
CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY
)
# The Hexagon compiler doesn't support the -rdynamic flag and this is set
# in the base cmake scripts. We have to redefine the __linux_compiler_gnu
# macro for cmake 2.8 to work
set
(
__LINUX_COMPILER_GNU 1
)
macro
(
__linux_compiler_gnu lang
)
set
(
CMAKE_SHARED_LIBRARY_LINK_
${
lang
}
_FLAGS
""
)
endmacro
()
This diff is collapsed.
Click to expand it.
dspal
@
c8e885aa
Compare
95e91546
...
c8e885aa
Subproject commit
95e91546f42e6d88d34a2bb29d0f428a8706c9e4
Subproject commit
c8e885aac51aa34855bb3880d3dc916b9e278083
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment