小惡魔AppleBOY
AppleBOY
小惡魔 - 電腦技術 - 工作筆記 - AppleBOY is about »
tag cloud
- ajax
- amazon
- amd
- android
- angularjs
- apache
- apc
- api
- appfog
- aws
- backboe event
- backbone.js
- bitbucket
- blog
- boilerplate
- boot
- bootloader
- bower
- browser
- busybox
- c
- c#
- c++
- cakephp
- capistrano
- centos
- chrmoe
- chrome
- ckeditor
- code style
- codeigniter
- coffeescript
- compass
- compass css framework
- conference
- css
- css3
- debian
- denyhost
- django
- driver
- eaccelerator
- editorconfig
- emacs
- embedded system
- error
- excel
- express
- fabric
- fancybox
- fanout
- fanterm
- fastcgi
- fckeditor
- fedora
- firebug
- firefox
- firefox os
- firephp
- flickr
- forefox os
- framework
- freebsd
- friefox
- fuse
- gae
- gaia
- galera
- geany
- gearman
- git
- git hooks
- github
- gmail
- google api
- google app engine
- google extension
- google web toolkit
- grub
- grub2
- grunt
- gruntjs
- haproxy
- html
- html5
- i18n
- icos
- ie
- innodb
- iphone
- javascript
- javascrpt
- jquery
- jquery migrate plugin
- jquery mobile
- jsdc
- json
- kernel
- laravel
- life
- lighttpd
- linode
- linux
- linux kernel
- live.js
- livereload
- mariadb
- memcache
- mobile
- mobile web
- mod_rpaf
- modern.ie
- mount
- mp3
- mssql
- myisam
- mysql
- network
- nexmo
- nginx
- nodejs
- normalize.css
- npm
- nvm
- osdc
- ossf
- pagoda
- pdo
- percona
- performance
- perl
- php
- php-cs-fixer
- php-fig
- php-fpm
- phpbb
- phpbb3
- phpconf
- phpfog
- phpmyadmin
- plurk
- plurk api
- png
- ports
- prgmr
- proftpd
- proxy
- pushstate
- python
- rackspace
- refactor
- requirejs
- responsive design
- rhel
- ruby
- rubygems
- sass
- sencha
- sencha touch
- send-pr
- slicehost
- sms
- spdy
- sphinx
- spinejs
- sql
- squid
- sqwish
- ssh
- sshfs
- svn
- textmagic
- titanium
- titanium mobile
- touch
- twitter bootstrap
- ubuntu
- uderscore.js
- uglifyjs
- underscore.js
- usb
- varnish
- vim
- virtualbox
- vps
- windows
- wordpress
- www
- xcache
- xdebug
- xtrabackup
- yasnippet
- zend framework
- 中正大學
- 剪頭髮
- 好站連結
- 心情日記
- 拉斐爾廚房
- 旅行日記
- 樹太老
- 版本控制
- 生活日記
- 網頁重構
- 美食
- 美食日記
- 虛擬主機
- 謝師宴
- 音樂分享
- 騰訊
- 高雄美食
» busybox iptunnel 噴出錯誤訊息
最近在弄新案子,用的是 Atheros solution (被高通買下),發現 SDK 裡面已經有更新到 Busybox 1.15,由於在建 ipv6 tunnel 時候必須用到 ip 這指令,當然必須支援 iptunnel,當我把 busybox 選項打開就噴出底下錯誤訊息:
busybox-1.01/networking/libiproute/libiproute.a(iptunnel.o):iptunnel.c:(.text+0×574): more undefined references to `__cpu_to_be16′ follow
在 Google 大神指示下找到一篇答案
修改 networking/libiproute/iptunnel.c
#include <asm/types.h>
# 後面加上
#include <asm/byteorder.h>
# 後面加上
#include <asm/byteorder.h>









