Обновят ли обновления и обновления безопасности мою версию Ubuntu?

Официально документированный метод

https://www.raspberrypi.org/documentation/linux/kernel/building.md (GitHub)

git clone https://github.com/raspberrypi/tools
export PATH="$(pwd)/tools/arm-bcm2708/gcc-linaro-arm-linux-gnueabihf-raspbian-x64/bin:${PATH}"
printf '#include <stdio.h>\nint main() { puts("hello world"); }\n' > hello_world.c
printf '#include <iostream>\nint main() { std::cout << "hello world" << std::endl; }\n' > hello_world.cpp
arm-linux-gnueabihf-gcc -std=c99 -o hello_world_c hello_world.c
arm-linux-gnueabihf-g++ -std=c++11 -o hello_world_cpp hello_world.cpp

Протестировано в Ubuntu 17.10, инструменты репо на 5caa7046982f0539cf5380f94da04b31129ed521

1
задан 11 January 2014 в 02:02

0 ответов

Другие вопросы по тегам:

Похожие вопросы: