search for: ac100

Displaying 13 results from an estimated 13 matches for "ac100".

Did you mean: ac10
2012 Jun 27
0
[LLVMdev] Is cross-compiling for ARM on x86 with llvm/Clang possible?
...inux-gnueabi > --sysroot=/home/hum/Documents/Projects/arm_toolchain/arm-2010.09/arm-none-linux-gnueabi/libc > -gcc-toolchain /home/hum/Documents/Projects/arm_toolchain/arm-2010.09 > hello.c -o hello > > The build command is shown above. > > After that, I prepared an ARM laptop, AC100 - TOSHIBA. > I installed Ubuntu 12.04 in the way guided from the link below. > > https://wiki.ubuntu.com/ARM/TEGRA/AC100 > > So I moved the final binary from host PC to AC100 and executed. > But the binary DIDN'T RUN. > > $./hello > > returns an error message below...
2012 Jun 27
3
[LLVMdev] Is cross-compiling for ARM on x86 with llvm/Clang possible?
...temps -ccc-host-triple arm-none-linux-gnueabi --sysroot=/home/hum/Documents/Projects/arm_toolchain/arm-2010.09/arm-none-linux-gnueabi/libc -gcc-toolchain /home/hum/Documents/Projects/arm_toolchain/arm-2010.09 hello.c -o hello The build command is shown above. After that, I prepared an ARM laptop, AC100 - TOSHIBA. I installed Ubuntu 12.04 in the way guided from the link below. https://wiki.ubuntu.com/ARM/TEGRA/AC100 So I moved the final binary from host PC to AC100 and executed. But the binary DIDN'T RUN. $./hello returns an error message below. bash: ./hello: No such file hello I need t...
2012 Jun 28
3
[LLVMdev] Is cross-compiling for ARM on x86 with llvm/Clang possible?
Hello list I think I really finally found a way to crossbuild a binary for ARM using Clang/llvm. This message would be a documentation for someone who may concern for the same issue with me. - Target : TOSHIBA AC100 / Ubuntu 12.04 (https://wiki.ubuntu.com/ARM/** TEGRA/AC100 <https://wiki.ubuntu.com/ARM/TEGRA/AC100>) - Host : i386 Desktop PC / Ubuntu 12.04 - Toolchain on host : sudo apt-get install gcc-arm-linux-gnueabi - Clang/llvm compile : http://clang.llvm.org/get_started.html - Command string for cr...
2012 Jun 21
0
[LLVMdev] Is cross-compiling for ARM on x86 with llvm/Clang possible?
Hi Joerg, Thank you very much! I finally found a working command string to cross-compile for ARM on x86. ./clang -v --save-temps -ccc-host-triple arm-none-linux-gnueabi --sysroot=/home/hum/Documents/Projects/arm_toolchain/arm-2010.09/arm-none-linux-gnueabi/libc -gcc-toolchain /home/hum/Documents/Projects/arm_toolchain/arm-2010.09 hello.c -o hello Above works fine! Important options are
2011 Feb 10
6
quake3 running on mobile phone(arm processor) by wine
ogre(windows binary) running on ac100(arm linux) http://www.youtube.com/watch?v=g2D6SZcrT_U quake3(windows binary) running on ac100 (arm linux) http://www.youtube.com/watch?v=UAncqVtQyEQ ogre(windows binary) running on n900(arm linux) http://www.youtube.com/watch?v=yDqkvEyzFk0 quake3(windows binary) running on n900 (arm linux) http...
2007 May 28
5
Has anyone any insight as to why RedHat Enterprise Level 5 is broken as far as PXE booting is concerned.
...nnot access files in the "pxelinux.cfg" dir RHEL4 works just fine !! ( kernel 2.6.9-22.EL) with (tftp-server-0.39-1.i386.rpm) But RHEL5 seems to be broken..... is the TFTP SERVER broken (tftp-server-0.42-3.1.i386.rpm) Client very SLOWLY displays thus: Trying to load: pxelinux.cfg/AC1000FD Trying to load: pxelinux.cfg/AC1000F Trying to load: pxelinux.cfg/AC1000 Trying to load: pxelinux.cfg/AC100 Trying to load: pxelinux.cfg/AC10 Trying to load: pxelinux.cfg/AC1 Trying to load: pxelinux.cfg/AC Trying to load: pxelinux.cfg/A Trying to load: pxelinux.cfg/default Message log : ####...
2015 Jul 22
2
[LLVMdev] Would DosBox benefit from LLVM JIT?
...First of all, I'd like to point out that I am a newbie in this topic and this is more of a "would it work?" kind of question. I basically just came up with a difficult problem and decided to research on it. I recently tried to run Elder Scrolls: Daggerfall on an ARM netbook Toshiba AC100 and failed even after turning on the latest patches for "dynamic recompilation". I took a look at the code and here's what I found: https://github.com/wjp/dosbox/blob/idados/src/cpu/core_dynrec/decoder.h#L34 The relevant macros and functions are defined there: https://github.com/wj...
2012 Aug 29
0
[LLVMdev] Is cross-compiling for ARM on x86 with llvm/Clang possible?
Hi Journeyer First, thank you so much for your updates on your experiments. I am currently following your steps but have found myself stuck with the following error: /usr/lib/gcc/arm-linux-gnueabi/4.6/../../../../arm-linux-gnueabi/bin/ld: this linker was not configured to use sysroots clang: error: linker command failed with exit code 1 (use -v to see invocation) I used the command string you
2007 Jun 19
0
PXE problems with syslinux 3.51
...ost in.tftpd[25948]: RRQ from 172.16.0.26 filename /centos5-i386/pxelinux.0 Jun 18 06:01:19 boothost in.tftpd[25950]: RRQ from 172.16.0.26 filename /centos5-i386/pxelinux.cfg/03-03-13-83-83-d3-a3 Jun 18 06:01:19 boothost in.tftpd[25951]: RRQ from 172.16.0.26 filename /centos5-i386/pxelinux.cfg/AC10001A Jun 18 06:01:19 boothost in.tftpd[25957]: RRQ from 172.16.0.26 filename /centos5-i386/vmlinuz Jun 18 06:01:19 boothost in.tftpd[25958]: RRQ from 172.16.0.26 filename /centos5-i386/initrd.img Versions 3.50 and 3.51 request the filenames without the leading /centos5-i386, and fail: Jun...
2012 Jun 20
3
[LLVMdev] Is cross-compiling for ARM on x86 with llvm/Clang possible?
Hello, Thank you for your kind attention to my issue and your help. I changed the tool chain and tried again. And there is a little progress but still have some problem. Using --sysroot doesn't make clang use linker(ld) in the cross tool. Most important question is how I can make clang use cross tool linker. Let me show you my experiment and questions below. There are two questions. [Run]
2013 Jun 13
43
[Hackathon Minutes] Xen 4.4 Planning
This took me a while to post, but given that we are not starting 4.4 just yet, this may be appropriate now. I may have misrepresented some stuff as it has been 4 weeks since I wrote these. Cheers Lars = Purpose of Roadmap = * Set a vision for interesting features * Track items * Help consumers of Xen with their planning = Release Models that work well = There was a brief discussion on two
2019 Sep 23
2
[PATCH trivial 1/3] treewide: drivers: Fix Kconfig indentation
...NVEC_POWER @@ -39,7 +39,7 @@ config NVEC_POWER nVidia compliant embedded controllers. To compile this driver as a module, say M here: the module will be - called nvec-power + called nvec-power config NVEC_PAZ00 @@ -50,5 +50,5 @@ config NVEC_PAZ00 devices, e.g. Toshbia AC100 and Dynabooks AZ netbooks. To compile this driver as a module, say M here: the module will be - called nvec-paz00 + called nvec-paz00 diff --git a/drivers/staging/pi433/Kconfig b/drivers/staging/pi433/Kconfig index 8acde0814206..dd9e4709d1a8 100644 --- a/drivers/staging/pi433/Kco...
2019 Oct 04
3
[RESEND TRIVIAL 1/3] treewide: drivers: Fix Kconfig indentation
...NVEC_POWER @@ -39,7 +39,7 @@ config NVEC_POWER nVidia compliant embedded controllers. To compile this driver as a module, say M here: the module will be - called nvec-power + called nvec-power config NVEC_PAZ00 @@ -50,5 +50,5 @@ config NVEC_PAZ00 devices, e.g. Toshbia AC100 and Dynabooks AZ netbooks. To compile this driver as a module, say M here: the module will be - called nvec-paz00 + called nvec-paz00 diff --git a/drivers/staging/pi433/Kconfig b/drivers/staging/pi433/Kconfig index 8acde0814206..dd9e4709d1a8 100644 --- a/drivers/staging/pi433/Kco...