﻿<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ja">
	<id>https://wiki.blender.jp/index.php?action=history&amp;feed=atom&amp;title=%E5%88%A9%E7%94%A8%E8%80%85%3AJuicyfruit%2Fnumpy_windows</id>
	<title>利用者:Juicyfruit/numpy windows - 版の履歴</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.blender.jp/index.php?action=history&amp;feed=atom&amp;title=%E5%88%A9%E7%94%A8%E8%80%85%3AJuicyfruit%2Fnumpy_windows"/>
	<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=%E5%88%A9%E7%94%A8%E8%80%85:Juicyfruit/numpy_windows&amp;action=history"/>
	<updated>2026-09-10T14:29:14Z</updated>
	<subtitle>このウィキのこのページに関する変更履歴</subtitle>
	<generator>MediaWiki 1.31.0</generator>
	<entry>
		<id>https://wiki.blender.jp/index.php?title=%E5%88%A9%E7%94%A8%E8%80%85:Juicyfruit/numpy_windows&amp;diff=146241&amp;oldid=prev</id>
		<title>Yamyam: 1版 をインポートしました</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=%E5%88%A9%E7%94%A8%E8%80%85:Juicyfruit/numpy_windows&amp;diff=146241&amp;oldid=prev"/>
		<updated>2018-06-28T21:07:20Z</updated>

		<summary type="html">&lt;p&gt;1版 をインポートしました&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;ja&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;← 古い版&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;2018年6月28日 (木) 21:07時点における版&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;ja&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(相違点なし)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Yamyam</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.blender.jp/index.php?title=%E5%88%A9%E7%94%A8%E8%80%85:Juicyfruit/numpy_windows&amp;diff=146240&amp;oldid=prev</id>
		<title>wiki&gt;Juicyfruit: Created page with &quot;Building numpy 1.8.0 on windows without any external stuff without a fortran compiler in a GPL compatible way:  MSVC 2013:  install python.   fix distutils\msvc9compiler.py   lin...&quot;</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=%E5%88%A9%E7%94%A8%E8%80%85:Juicyfruit/numpy_windows&amp;diff=146240&amp;oldid=prev"/>
		<updated>2014-03-03T13:38:36Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;Building numpy 1.8.0 on windows without any external stuff without a fortran compiler in a GPL compatible way:  MSVC 2013:  install python.   fix distutils\msvc9compiler.py   lin...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新規ページ&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Building numpy 1.8.0 on windows without any external stuff without a fortran compiler in a GPL compatible way:&lt;br /&gt;
&lt;br /&gt;
MSVC 2013:&lt;br /&gt;
&lt;br /&gt;
install python.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
fix distutils\msvc9compiler.py &lt;br /&gt;
&lt;br /&gt;
line 649: &amp;quot;if False and mfinfi in not None&amp;quot;&lt;br /&gt;
as we dont want maifests and they dont work with MSVC 2012+ &lt;br /&gt;
&lt;br /&gt;
patch numpy:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
diff -ur numpy-1.8.0.orig/numpy/core/setup.py numpy-1.8.0/numpy/core/setup.py&lt;br /&gt;
--- numpy-1.8.0.orig/numpy/core/setup.py	Mon Mar  3 05:21:22 2014&lt;br /&gt;
+++ numpy-1.8.0/numpy/core/setup.py	Mon Mar  3 04:54:47 2014&lt;br /&gt;
@@ -199,7 +199,7 @@&lt;br /&gt;
 &lt;br /&gt;
     # Check for complex support&lt;br /&gt;
     st = config.check_header('complex.h')&lt;br /&gt;
-    if st:&lt;br /&gt;
+    if False and st:&lt;br /&gt;
         priv.append(('HAVE_COMPLEX_H', 1))&lt;br /&gt;
         pub.append(('NPY_USE_C99_COMPLEX', 1))&lt;br /&gt;
 &lt;br /&gt;
@@ -366,7 +366,7 @@&lt;br /&gt;
 def check_mathlib(config_cmd):&lt;br /&gt;
     # Testing the C math library&lt;br /&gt;
     mathlibs = []&lt;br /&gt;
-    mathlibs_choices = [[], ['m'], ['cpml']]&lt;br /&gt;
+    mathlibs_choices = [[], ['cpml']]&lt;br /&gt;
     mathlib = os.environ.get('MATHLIB')&lt;br /&gt;
     if mathlib:&lt;br /&gt;
         mathlibs_choices.insert(0, mathlib.split(','))&lt;br /&gt;
diff -ur numpy-1.8.0.orig/numpy/core/src/private/npy_config.h numpy-1.8.0/numpy/core/src/private/npy_config.h&lt;br /&gt;
--- numpy-1.8.0.orig/numpy/core/src/private/npy_config.h	Mon Mar  3 05:21:25 2014&lt;br /&gt;
+++ numpy-1.8.0/numpy/core/src/private/npy_config.h	Mon Mar  3 04:45:22 2014&lt;br /&gt;
@@ -6,8 +6,8 @@&lt;br /&gt;
 &lt;br /&gt;
 /* Disable broken MS math functions */&lt;br /&gt;
 #if defined(_MSC_VER) || defined(__MINGW32_VERSION)&lt;br /&gt;
-#undef HAVE_ATAN2&lt;br /&gt;
-#undef HAVE_HYPOT&lt;br /&gt;
+//#undef HAVE_ATAN2&lt;br /&gt;
+//#undef HAVE_HYPOT&lt;br /&gt;
 #endif&lt;br /&gt;
 &lt;br /&gt;
 /* Safe to use ldexp and frexp for long double for MSVC builds */&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
build with:&lt;br /&gt;
&lt;br /&gt;
python setup.py config --compiler=msvc build --compiler=msvc bdist_wininst&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
note you need both x64 and x86 versions of python of the same exact version as you are using in blender (3.3)&lt;/div&gt;</summary>
		<author><name>wiki&gt;Juicyfruit</name></author>
		
	</entry>
</feed>