English 中文(简体)
编篡武器电子2fsprogs
原标题:cross compiling e2fsprogs for arm

I m试图交叉编集陶器包裹。 我想用我的安乐器操作。

当我试图操作<代码>/configure时,它说。 Can t found ext2fs Library. 我发现,问题很深,需要深层图书馆。 该图书馆已进入电子2fsprogs包。

因此,我试图汇编电子2fsprogs。 法定汇编是不可调用的,因为似乎电子2fsprogrs需要-enable-elf-shlibs才能正确指挥。 我在指挥下建造了2fsprogrs:

"./configure --host=arm-none-linux-gnueabi" CC=arm-none-linux-gnueabi-gcc --enable-elf-shlibs && make && make install && make install-libs.

它运作正确,我收集了电子2fsprogs。 问题在于如何通过图书馆进行分散式编辑,然后是我必须复制哪些档案去我的和海底装置。

I think it s posible to need to link the .so .a files I m getting in e2fsprogs cross compilation but I dont understand exactly how to make this.

In one of my adventures cross compiling extundelete I got binary arm extundelete file but this was compiled dynamically linked and uses shared libraries. I tried to copy extundelete binary and .so files from e2fsprogs to my Android device but it doesnt run correctly.

任何人都能够帮助我了解充满活力的汇编的美好世界吗?

问题回答

页: 1 ------------ ------------- --- - 固定/目标

了解新版本(例如1.43)不再使用,或再使用。 - 连线照相机也使用。

Use CC= and LDFLAGS= instead. example:

./configure --host=arm-none-linux-gnueabi CC=arm-none-linux-gnueabi-gcc LDFLAGS=--static --prefox=/target/dirctory

Cheers!





相关问题
Android - ListView fling gesture triggers context menu

I m relatively new to Android development. I m developing an app with a ListView. I ve followed the info in #1338475 and have my app recognizing the fling gesture, but after the gesture is complete, ...

AsyncTask and error handling on Android

I m converting my code from using Handler to AsyncTask. The latter is great at what it does - asynchronous updates and handling of results in the main UI thread. What s unclear to me is how to handle ...

Android intent filter for a particular file extension?

I want to be able to download a file with a particular extension from the net, and have it passed to my application to deal with it, but I haven t been able to figure out the intent filter. The ...

Android & Web: What is the equivalent style for the web?

I am quite impressed by the workflow I follow when developing Android applications: Define a layout in an xml file and then write all the code in a code-behind style. Is there an equivalent style for ...

TiledLayer equivalent in Android [duplicate]

To draw landscapes, backgrounds with patterns etc, we used TiledLayer in J2ME. Is there an android counterpart for that. Does android provide an option to set such tiled patterns in the layout XML?

Using Repo with Msysgit

When following the Android Open Source Project instructions on installing repo for use with Git, after running the repo init command, I run into this error: /c/Users/Andrew Rabon/bin/repo: line ...

Android "single top" launch mode and onNewIntent method

I read in the Android documentation that by setting my Activity s launchMode property to singleTop OR by adding the FLAG_ACTIVITY_SINGLE_TOP flag to my Intent, that calling startActivity(intent) would ...

From Web Development to Android Development

I have pretty good skills in PHP , Mysql and Javascript for a junior developer. If I wanted to try my hand as Android Development do you think I might find it tough ? Also what new languages would I ...

热门标签