Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
linphone-cmake-builder
Commits
98e97e1e
Commit
98e97e1e
authored
Mar 26, 2018
by
Simon Morlat
Browse files
Fix issue with VP8 compilation on raspberry pi
parent
cd8badac
Changes
2
Hide whitespace changes
Inline
Side-by-side
builders/vpx.cmake
View file @
98e97e1e
...
...
@@ -145,6 +145,7 @@ else()
)
list
(
REMOVE_ITEM EP_vpx_CONFIGURE_OPTIONS
"--enable-multithread"
)
else
()
lcb_use_c_compiler_for_assembler
(
NO
)
if
(
CMAKE_SYSTEM_PROCESSOR STREQUAL
"armv7l"
)
set
(
VPX_TARGET
"armv7-linux-gcc"
)
else
()
...
...
cmake/Autotools/Autotools.cmake.in
View file @
98e97e1e
...
...
@@ -22,6 +22,10 @@
if("@CMAKE_C_COMPILER_ID@" STREQUAL "GNU")
string(REGEX REPLACE "gcc$" "as" AS_COMPILER "@CMAKE_C_COMPILER@")
if (AS_COMPILER STREQUAL "@CMAKE_C_COMPILER@")
#fallback for the case where gcc is found as /usr/bin/cc
string(REGEX REPLACE "cc$" "as" AS_COMPILER "@CMAKE_C_COMPILER@")
endif()
set(AUTOTOOLS_AS_COMPILER ${AS_COMPILER} CACHE PATH "Initial cache" FORCE)
endif()
set(C_LAUNCHER "")
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment