public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: profiles/prefix/windows/winnt/x86/
@ 2019-06-12 15:32 Michael Haubenwallner
  0 siblings, 0 replies; 3+ messages in thread
From: Michael Haubenwallner @ 2019-06-12 15:32 UTC (permalink / raw
  To: gentoo-commits

commit:     f9bdfa830a93275e29277ee382fce513573b6e0d
Author:     Michael Haubenwallner <haubi <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 12 14:42:07 2019 +0000
Commit:     Michael Haubenwallner <haubi <AT> gentoo <DOT> org>
CommitDate: Wed Jun 12 15:32:30 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9bdfa83

profiles/prefix/windows: add winnt/x86 generic profile

For use with prefix-stack-setup (from app-portage/prefix-toolkit), to
have some native windows profile.  As the windows toolchain name may
vary (MSVC versions), leave setting CHOST to prefix-stack-setup.

Signed-off-by: Michael Haubenwallner <haubi <AT> gentoo.org>

 profiles/prefix/windows/winnt/x86/eapi          | 1 +
 profiles/prefix/windows/winnt/x86/make.defaults | 5 +++++
 profiles/prefix/windows/winnt/x86/parent        | 1 +
 3 files changed, 7 insertions(+)

diff --git a/profiles/prefix/windows/winnt/x86/eapi b/profiles/prefix/windows/winnt/x86/eapi
new file mode 100644
index 00000000000..7ed6ff82de6
--- /dev/null
+++ b/profiles/prefix/windows/winnt/x86/eapi
@@ -0,0 +1 @@
+5

diff --git a/profiles/prefix/windows/winnt/x86/make.defaults b/profiles/prefix/windows/winnt/x86/make.defaults
new file mode 100644
index 00000000000..e440495bc30
--- /dev/null
+++ b/profiles/prefix/windows/winnt/x86/make.defaults
@@ -0,0 +1,5 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+ARCH="x86-winnt"
+ACCEPT_KEYWORDS="~x86-winnt"

diff --git a/profiles/prefix/windows/winnt/x86/parent b/profiles/prefix/windows/winnt/x86/parent
new file mode 100644
index 00000000000..f3229c5b987
--- /dev/null
+++ b/profiles/prefix/windows/winnt/x86/parent
@@ -0,0 +1 @@
+..


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: profiles/prefix/windows/winnt/x86/
@ 2019-06-13 13:07 Michael Haubenwallner
  0 siblings, 0 replies; 3+ messages in thread
From: Michael Haubenwallner @ 2019-06-13 13:07 UTC (permalink / raw
  To: gentoo-commits

commit:     231634e8d58378461090bdba125bdbd0852510b8
Author:     Michael Haubenwallner <haubi <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 13 12:49:58 2019 +0000
Commit:     Michael Haubenwallner <haubi <AT> gentoo <DOT> org>
CommitDate: Thu Jun 13 13:07:30 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=231634e8

profiles/prefix/winnt/x86: define multilib defaults

Signed-off-by: Michael Haubenwallner <haubi <AT> gentoo.org>

 profiles/prefix/windows/winnt/x86/make.defaults | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/profiles/prefix/windows/winnt/x86/make.defaults b/profiles/prefix/windows/winnt/x86/make.defaults
index e440495bc30..3c45b788d16 100644
--- a/profiles/prefix/windows/winnt/x86/make.defaults
+++ b/profiles/prefix/windows/winnt/x86/make.defaults
@@ -3,3 +3,10 @@
 
 ARCH="x86-winnt"
 ACCEPT_KEYWORDS="~x86-winnt"
+
+# multilib build stuff, single ABI (no multilib)
+MULTILIB_ABIS="x86"
+DEFAULT_ABI="x86"
+ABI="x86"
+IUSE_IMPLICIT="abi_x86_32"
+LIBDIR_x86="lib"


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: profiles/prefix/windows/winnt/x86/
@ 2020-03-11 15:47 Michael Haubenwallner
  0 siblings, 0 replies; 3+ messages in thread
From: Michael Haubenwallner @ 2020-03-11 15:47 UTC (permalink / raw
  To: gentoo-commits

commit:     def55073a59a9114dc08dc58889228b3ac86cf90
Author:     Michael Haubenwallner <haubi <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 11 15:38:46 2020 +0000
Commit:     Michael Haubenwallner <haubi <AT> gentoo <DOT> org>
CommitDate: Wed Mar 11 15:47:14 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=def55073

profiles/prefix/winnt/x86/make.defaults: fix copyright year typo

Signed-off-by: Michael Haubenwallner <haubi <AT> gentoo.org>

 profiles/prefix/windows/winnt/x86/make.defaults | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/profiles/prefix/windows/winnt/x86/make.defaults b/profiles/prefix/windows/winnt/x86/make.defaults
index 0c11ef592e9..223c275acc7 100644
--- a/profiles/prefix/windows/winnt/x86/make.defaults
+++ b/profiles/prefix/windows/winnt/x86/make.defaults
@@ -1,4 +1,4 @@
-# Copyright 1999-2010 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 # This profile is designed for use as Stacked Prefix, set up using


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-03-11 15:47 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-11 15:47 [gentoo-commits] repo/gentoo:master commit in: profiles/prefix/windows/winnt/x86/ Michael Haubenwallner
  -- strict thread matches above, loose matches on Subject: below --
2019-06-13 13:07 Michael Haubenwallner
2019-06-12 15:32 Michael Haubenwallner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox