mirror of
https://git.freebsd.org/ports.git
synced 2025-05-05 16:07:38 -04:00
35 lines
1.1 KiB
Text
35 lines
1.1 KiB
Text
--- Configurations/10-main.conf.orig 2022-04-12 16:29:42 UTC
|
|
+++ Configurations/10-main.conf
|
|
@@ -1069,6 +1069,32 @@ my %targets = (
|
|
perlasm_scheme => "linux64",
|
|
},
|
|
|
|
+ "BSD-ppc" => {
|
|
+ inherit_from => [ "BSD-generic32" ],
|
|
+ asm_arch => 'ppc32',
|
|
+ perlasm_scheme => "linux32",
|
|
+ lib_cppflags => add("-DB_ENDIAN"),
|
|
+ },
|
|
+
|
|
+ "BSD-ppc64" => {
|
|
+ inherit_from => [ "BSD-generic64" ],
|
|
+ cflags => add("-m64"),
|
|
+ cxxflags => add("-m64"),
|
|
+ lib_cppflags => add("-DB_ENDIAN"),
|
|
+ asm_arch => 'ppc64',
|
|
+ perlasm_scheme => "linux64",
|
|
+ },
|
|
+
|
|
+ "BSD-ppc64le" => {
|
|
+ inherit_from => [ "BSD-generic64" ],
|
|
+ cflags => add("-m64"),
|
|
+ cxxflags => add("-m64"),
|
|
+ lib_cppflags => add("-DL_ENDIAN"),
|
|
+ asm_arch => 'ppc64',
|
|
+ perlasm_scheme => "linux64le",
|
|
+ },
|
|
+
|
|
+
|
|
"bsdi-elf-gcc" => {
|
|
inherit_from => [ "BASE_unix" ],
|
|
CC => "gcc",
|