Merge pull request #1426 from phil-opp/blog-fix-target-c-int-width

Update blog for `target-c-int-width` change
This commit is contained in:
Philipp Oppermann
2025-08-07 13:13:23 +02:00
committed by GitHub
8 changed files with 24 additions and 24 deletions

View File

@@ -119,7 +119,7 @@ Para nuestro sistema destino, sin embargo, requerimos algunos parámetros de con
"arch": "x86_64", "arch": "x86_64",
"target-endian": "little", "target-endian": "little",
"target-pointer-width": "64", "target-pointer-width": "64",
"target-c-int-width": "32", "target-c-int-width": 32,
"os": "linux", "os": "linux",
"executables": true, "executables": true,
"linker-flavor": "gcc", "linker-flavor": "gcc",
@@ -142,7 +142,7 @@ Nuestro kernel también tiene como objetivo los sistemas `x86_64`, por lo que nu
"arch": "x86_64", "arch": "x86_64",
"target-endian": "little", "target-endian": "little",
"target-pointer-width": "64", "target-pointer-width": "64",
"target-c-int-width": "32", "target-c-int-width": 32,
"os": "none", "os": "none",
"executables": true "executables": true
} }
@@ -203,7 +203,7 @@ Nuestro archivo de especificación de objetivo ahora se ve así:
"arch": "x86_64", "arch": "x86_64",
"target-endian": "little", "target-endian": "little",
"target-pointer-width": "64", "target-pointer-width": "64",
"target-c-int-width": "32", "target-c-int-width": 32,
"os": "none", "os": "none",
"executables": true, "executables": true,
"linker-flavor": "ld.lld", "linker-flavor": "ld.lld",

View File

@@ -125,7 +125,7 @@ rtl = true
"arch": "x86_64", "arch": "x86_64",
"target-endian": "little", "target-endian": "little",
"target-pointer-width": "64", "target-pointer-width": "64",
"target-c-int-width": "32", "target-c-int-width": 32,
"os": "linux", "os": "linux",
"executables": true, "executables": true,
"linker-flavor": "gcc", "linker-flavor": "gcc",
@@ -148,7 +148,7 @@ rtl = true
"arch": "x86_64", "arch": "x86_64",
"target-endian": "little", "target-endian": "little",
"target-pointer-width": "64", "target-pointer-width": "64",
"target-c-int-width": "32", "target-c-int-width": 32,
"os": "none", "os": "none",
"executables": true "executables": true
} }
@@ -213,7 +213,7 @@ As we want to use the `soft-float` feature, we also need to tell the Rust compil
"arch": "x86_64", "arch": "x86_64",
"target-endian": "little", "target-endian": "little",
"target-pointer-width": "64", "target-pointer-width": "64",
"target-c-int-width": "32", "target-c-int-width": 32,
"os": "none", "os": "none",
"executables": true, "executables": true,
"linker-flavor": "ld.lld", "linker-flavor": "ld.lld",

View File

@@ -121,7 +121,7 @@ Pour notre système cible toutefois, nous avons besoin de paramètres de configu
"arch": "x86_64", "arch": "x86_64",
"target-endian": "little", "target-endian": "little",
"target-pointer-width": "64", "target-pointer-width": "64",
"target-c-int-width": "32", "target-c-int-width": 32,
"os": "linux", "os": "linux",
"executables": true, "executables": true,
"linker-flavor": "gcc", "linker-flavor": "gcc",
@@ -144,7 +144,7 @@ Nous pouvons aussi cibler les systèmes `x86_64` avec notre noyau, donc notre sp
"arch": "x86_64", "arch": "x86_64",
"target-endian": "little", "target-endian": "little",
"target-pointer-width": "64", "target-pointer-width": "64",
"target-c-int-width": "32", "target-c-int-width": 32,
"os": "none", "os": "none",
"executables": true "executables": true
} }
@@ -210,7 +210,7 @@ Notre fichier de spécification de cible ressemble maintenant à ceci :
"arch": "x86_64", "arch": "x86_64",
"target-endian": "little", "target-endian": "little",
"target-pointer-width": "64", "target-pointer-width": "64",
"target-c-int-width": "32", "target-c-int-width": 32,
"os": "none", "os": "none",
"executables": true, "executables": true,
"linker-flavor": "ld.lld", "linker-flavor": "ld.lld",

View File

@@ -119,7 +119,7 @@ Cargoは`--target`パラメータを使ってさまざまなターゲットを
"arch": "x86_64", "arch": "x86_64",
"target-endian": "little", "target-endian": "little",
"target-pointer-width": "64", "target-pointer-width": "64",
"target-c-int-width": "32", "target-c-int-width": 32,
"os": "linux", "os": "linux",
"executables": true, "executables": true,
"linker-flavor": "gcc", "linker-flavor": "gcc",
@@ -142,7 +142,7 @@ Cargoは`--target`パラメータを使ってさまざまなターゲットを
"arch": "x86_64", "arch": "x86_64",
"target-endian": "little", "target-endian": "little",
"target-pointer-width": "64", "target-pointer-width": "64",
"target-c-int-width": "32", "target-c-int-width": 32,
"os": "none", "os": "none",
"executables": true "executables": true
} }
@@ -208,7 +208,7 @@ As we want to use the `soft-float` feature, we also need to tell the Rust compil
"arch": "x86_64", "arch": "x86_64",
"target-endian": "little", "target-endian": "little",
"target-pointer-width": "64", "target-pointer-width": "64",
"target-c-int-width": "32", "target-c-int-width": 32,
"os": "none", "os": "none",
"executables": true, "executables": true,
"linker-flavor": "ld.lld", "linker-flavor": "ld.lld",

View File

@@ -127,7 +127,7 @@ Cargo는 `--target` 인자를 통해 여러 컴파일 대상 시스템들을 지
"arch": "x86_64", "arch": "x86_64",
"target-endian": "little", "target-endian": "little",
"target-pointer-width": "64", "target-pointer-width": "64",
"target-c-int-width": "32", "target-c-int-width": 32,
"os": "linux", "os": "linux",
"executables": true, "executables": true,
"linker-flavor": "gcc", "linker-flavor": "gcc",
@@ -151,7 +151,7 @@ Cargo는 `--target` 인자를 통해 여러 컴파일 대상 시스템들을 지
"arch": "x86_64", "arch": "x86_64",
"target-endian": "little", "target-endian": "little",
"target-pointer-width": "64", "target-pointer-width": "64",
"target-c-int-width": "32", "target-c-int-width": 32,
"os": "none", "os": "none",
"executables": true "executables": true
} }
@@ -218,7 +218,7 @@ As we want to use the `soft-float` feature, we also need to tell the Rust compil
"arch": "x86_64", "arch": "x86_64",
"target-endian": "little", "target-endian": "little",
"target-pointer-width": "64", "target-pointer-width": "64",
"target-c-int-width": "32", "target-c-int-width": 32,
"os": "none", "os": "none",
"executables": true, "executables": true,
"linker-flavor": "ld.lld", "linker-flavor": "ld.lld",

View File

@@ -116,7 +116,7 @@ For our target system, however, we require some special configuration parameters
"arch": "x86_64", "arch": "x86_64",
"target-endian": "little", "target-endian": "little",
"target-pointer-width": "64", "target-pointer-width": "64",
"target-c-int-width": "32", "target-c-int-width": 32,
"os": "linux", "os": "linux",
"executables": true, "executables": true,
"linker-flavor": "gcc", "linker-flavor": "gcc",
@@ -139,7 +139,7 @@ We also target `x86_64` systems with our kernel, so our target specification wil
"arch": "x86_64", "arch": "x86_64",
"target-endian": "little", "target-endian": "little",
"target-pointer-width": "64", "target-pointer-width": "64",
"target-c-int-width": "32", "target-c-int-width": 32,
"os": "none", "os": "none",
"executables": true "executables": true
} }
@@ -205,7 +205,7 @@ Our target specification file now looks like this:
"arch": "x86_64", "arch": "x86_64",
"target-endian": "little", "target-endian": "little",
"target-pointer-width": "64", "target-pointer-width": "64",
"target-c-int-width": "32", "target-c-int-width": 32,
"os": "none", "os": "none",
"executables": true, "executables": true,
"linker-flavor": "ld.lld", "linker-flavor": "ld.lld",

View File

@@ -122,7 +122,7 @@ Cargo поддерживает различные целевые системы
"arch": "x86_64", "arch": "x86_64",
"target-endian": "little", "target-endian": "little",
"target-pointer-width": "64", "target-pointer-width": "64",
"target-c-int-width": "32", "target-c-int-width": 32,
"os": "linux", "os": "linux",
"executables": true, "executables": true,
"linker-flavor": "gcc", "linker-flavor": "gcc",
@@ -145,7 +145,7 @@ Cargo поддерживает различные целевые системы
"arch": "x86_64", "arch": "x86_64",
"target-endian": "little", "target-endian": "little",
"target-pointer-width": "64", "target-pointer-width": "64",
"target-c-int-width": "32", "target-c-int-width": 32,
"os": "none", "os": "none",
"executables": true "executables": true
} }
@@ -211,7 +211,7 @@ As we want to use the `soft-float` feature, we also need to tell the Rust compil
"arch": "x86_64", "arch": "x86_64",
"target-endian": "little", "target-endian": "little",
"target-pointer-width": "64", "target-pointer-width": "64",
"target-c-int-width": "32", "target-c-int-width": 32,
"os": "none", "os": "none",
"executables": true, "executables": true,
"linker-flavor": "ld.lld", "linker-flavor": "ld.lld",

View File

@@ -96,7 +96,7 @@ Nightly 版本的编译器允许我们在源码的开头插入**特性标签**
"arch": "x86_64", "arch": "x86_64",
"target-endian": "little", "target-endian": "little",
"target-pointer-width": "64", "target-pointer-width": "64",
"target-c-int-width": "32", "target-c-int-width": 32,
"os": "linux", "os": "linux",
"executables": true, "executables": true,
"linker-flavor": "gcc", "linker-flavor": "gcc",
@@ -116,7 +116,7 @@ Nightly 版本的编译器允许我们在源码的开头插入**特性标签**
"arch": "x86_64", "arch": "x86_64",
"target-endian": "little", "target-endian": "little",
"target-pointer-width": "64", "target-pointer-width": "64",
"target-c-int-width": "32", "target-c-int-width": 32,
"os": "none", "os": "none",
"executables": true "executables": true
} }
@@ -176,7 +176,7 @@ As we want to use the `soft-float` feature, we also need to tell the Rust compil
"arch": "x86_64", "arch": "x86_64",
"target-endian": "little", "target-endian": "little",
"target-pointer-width": "64", "target-pointer-width": "64",
"target-c-int-width": "32", "target-c-int-width": 32,
"os": "none", "os": "none",
"executables": true, "executables": true,
"linker-flavor": "ld.lld", "linker-flavor": "ld.lld",