Displaying 2 results from an estimated 2 matches for "debian_jessie_arm64".
2015 Oct 26
2
How to pass march flag to GCC Assembler arch64-linux-gnu-as
I am trying to cross compile an assembly file using clang but with "
-fno-integrated-as" so that clang does not use its own assembler.
Clangs calls the command: /usr/bin/aarch64-linux-gnu-as -o Myfile.o
Myfile.s but it fails because of missing *-march=armv8-a+crypto *which is
required to build build my source file Myfile.s
I am passing "-march=armv8-a+crypto" to clang command
2015 Oct 26
2
How to pass march flag to GCC Assembler arch64-linux-gnu-as
...to build chromium and at this moment, They see some issues with
internal one so recommended to use the flag -fno-integrated-as.
Here is my exact build command (with -v and --save-temps):
$ clang -Igen -I../../include -target aarch64-linux-gnu
-march=armv8-a+crypto -fno-integrated-as
--sysroot=./debian_jessie_arm64-sysroot -O2 -c MyFile.S -o MyFile.o -v
--save-temps
clang version 3.8.0 (trunk 247874)
Target: aarch64--linux-gnu
Thread model: posix
Found candidate GCC installation:
./src/build/linux/debian_jessie_arm64-sysroot/usr/lib/gcc/aarch64-linux-gnu/4.8
Selected GCC installation:
./src/build/linux/debia...