/DragonOS/docs/kernel/configuration/ |
H A D | arch.md | 5 - x86_64 13 // "rust-analyzer.cargo.target": "x86_64-unknown-none", 16 如果想要为x86_64架构编译,请启用x86_64那一行,注释掉其它的。 25 # !!!!在这里设置ARCH,可选x86_64和riscv64
|
/DragonOS/kernel/ |
H A D | Makefile | 6 ifeq ($(ARCH), x86_64) 7 export TARGET_JSON=arch/x86_64/x86_64-unknown-none.json 29 ifeq ($(ARCH), x86_64) 38 ifeq ($(ARCH), x86_64)
|
H A D | env.mk | 4 ifeq ($(ARCH), x86_64) 5 CCPREFIX=x86_64-linux-gnu- 23 ifeq ($(ARCH), x86_64)
|
/DragonOS/tools/ |
H A D | bootstrap.sh | 161 …|| sudo rpm -ivh http://mirror.centos.org/centos/7/os/x86_64/Packages/bridge-utils-1.5-9.el7.x86_6… 236 rustup toolchain install nightly-2023-08-15-x86_64-unknown-linux-gnu 237 rustup toolchain install $RUST_VERSION-x86_64-unknown-linux-gnu 238 rustup component add rust-src --toolchain $RUST_VERSION-x86_64-unknown-linux-gnu 239 rustup component add rust-src --toolchain nightly-2023-08-15-x86_64-unknown-linux-gnu 240 rustup target add x86_64-unknown-none --toolchain $RUST_VERSION-x86_64-unknown-linux-gnu 241 rustup target add x86_64-unknown-none --toolchain nightly-2023-08-15-x86_64-unknown-linux-gnu 242 …rustup target add x86_64-unknown-linux-musl --toolchain nightly-2023-08-15-x86_64-unknown-linux-gnu 243 rustup target add x86_64-unknown-linux-musl --toolchain $RUST_VERSION-x86_64-unknown-linux-gnu 252 rustup component add rust-src --toolchain nightly-x86_64-unknown-linux-gnu
|
/DragonOS/kernel/src/ |
H A D | Makefile | 18 ifeq ($(ARCH), x86_64) 28 ifeq ($(ARCH), x86_64) 29 CFLAGS += -I $(shell pwd)/arch/x86_64/include 49 ifeq ($(ARCH), x86_64) 77 …kernel $(shell find . -name "*.o") ../target/x86_64-unknown-none/release/libdragonos_kernel.a -T a… 90 …hell find . -name "*.o") ../target/x86_64-unknown-none/release/libdragonos_kernel.a ./debug/kallsy…
|
/DragonOS/.github/workflows/ |
H A D | makefile.yml | 19 arch: [x86_64, riscv64] 42 arch: [x86_64, riscv64] 56 build-x86_64: 67 ARCH: x86_64 74 export DragonOS_GCC=$HOME/opt/dragonos-gcc/gcc-x86_64-unknown-none/bin
|
/DragonOS/ |
H A D | triagebot.toml | 69 [autolabel."O-x86_64"] 70 trigger_files = ["kernel/src/arch/x86_64"] 78 "kernel/src/arch/x86_64/driver", 83 trigger_files = ["kernel/src/virt", "kernel/src/arch/x86_64/kvm"] 151 x86_64 = ["@fslongjin", "@GnoCiYeH", "@Chiichen"] 167 "/kernel/src/arch/x86_64/kvm" = ["virtulization"] 168 "/kernel/src/arch/x86_64" = ["x86_64"]
|
/DragonOS/user/apps/test-backlog/ |
H A D | Makefile | 12 ifeq ($(ARCH), x86_64) 13 export RUST_TARGET=x86_64-unknown-linux-musl 14 export CC=x86_64-linux-musl-gcc 19 export RUST_TARGET=x86_64-unknown-linux-musl
|
/DragonOS/build-scripts/kernel_build/src/bindgen/arch/ |
H A D | mod.rs | 3 use self::x86_64::X86_64BindgenArch; 6 pub mod x86_64; module
|
/DragonOS/user/dadk/config/ |
H A D | test_blockcache_0_1_0.dadk | 5 "rust_target": "x86_64-unknown-dragonos", 24 "target_arch": ["x86_64"]
|
H A D | test_symlink_0_1_0.dadk | 5 "rust_target": "x86_64-unknown-dragonos", 27 "x86_64"
|
H A D | test_chown_0_1_0.dadk | 5 "rust_target": "x86_64-unknown-dragonos", 27 "x86_64"
|
H A D | tar_1_35.dadk | 9 … "url": "https://mirrors.dragonos.org.cn/pub/third_party/gnu/tar/tar-1.35-x86_64-linux-gnu.tar.xz" 24 "target_arch": ["x86_64"]
|
/DragonOS/user/apps/user-manage/ |
H A D | Makefile | 15 ifeq ($(ARCH), x86_64) 16 export RUST_TARGET=x86_64-unknown-linux-musl 21 export RUST_TARGET=x86_64-unknown-linux-musl
|
/DragonOS/user/apps/test_pty/ |
H A D | Makefile | 1 ifeq ($(ARCH), x86_64) 2 CROSS_COMPILE=x86_64-linux-musl-
|
/DragonOS/kernel/src/arch/ |
H A D | mod.rs | 7 pub mod x86_64; module 9 pub use self::x86_64::*; // 公开x86_64架构下的函数,使外界接口统一
|
/DragonOS/user/apps/test_bind/ |
H A D | Makefile | 1 ifeq ($(ARCH), x86_64) 2 CROSS_COMPILE=x86_64-linux-musl-
|
/DragonOS/user/apps/test_signal/ |
H A D | Makefile | 1 ifeq ($(ARCH), x86_64) 2 CROSS_COMPILE=x86_64-linux-musl-
|
/DragonOS/user/apps/test_fstat/ |
H A D | Makefile | 1 ifeq ($(ARCH), x86_64) 2 CROSS_COMPILE=x86_64-linux-musl-
|
/DragonOS/user/apps/http_server/ |
H A D | Makefile | 1 ifeq ($(ARCH), x86_64) 2 CROSS_COMPILE=x86_64-linux-musl-
|
/DragonOS/user/apps/test_uart/ |
H A D | Makefile | 1 ifeq ($(ARCH), x86_64) 2 CROSS_COMPILE=x86_64-linux-musl-
|
/DragonOS/user/apps/test_mkfifo/ |
H A D | Makefile | 1 ifeq ($(ARCH), x86_64) 2 CROSS_COMPILE=x86_64-linux-musl-
|
/DragonOS/user/apps/test_kvm/ |
H A D | Makefile | 1 ifeq ($(ARCH), x86_64) 2 CROSS_COMPILE=x86_64-linux-musl-
|
/DragonOS/user/apps/test_gettimeofday/ |
H A D | Makefile | 1 ifeq ($(ARCH), x86_64) 2 CROSS_COMPILE=x86_64-linux-musl-
|
/DragonOS/user/apps/test_statfs/ |
H A D | Makefile | 1 ifeq ($(ARCH), x86_64) 2 CROSS_COMPILE=x86_64-linux-musl-
|