On Sunday 04 December 2011 08:50:21 Volker Braun wrote:
> When I tracked down the yasm bug I made a trac ticket at
> http://trac.sagemath.org/sage_trac/ticket/11844
> 
> On Saturday, December 3, 2011 11:54:03 PM UTC, jason wrote:
> > > This look like yasm is failing because your doing a parallel build ,
> > 
> > it's a known problem and has been reported at least a year ago , it only
> > seems to effect cygwin ,
> > 
> > it's been fixed it appears see
> > 
> > 
> > http://tortall.lighthouseapp.com/projects/78676/changesets/2bd66514b6b100
> > 887c19d8598da38347b3cff4

I'll upgrade yasm to the new one today and put it in our svn , which you can 
just copy , or use the new yasm youself and follow this change procedure  in 
the 
attached file , it's a diff but there are a few other things to do

Jason

-- 
You received this message because you are subscribed to the Google Groups 
"mpir-devel" group.
To post to this group, send email to mpir-devel@googlegroups.com.
To unsubscribe from this group, send email to 
mpir-devel+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/mpir-devel?hl=en.

###
###	To upgrade mpir's yasm.
###
###	change to the mpir directory
###
###	svn del yasm
###	svn commit -m "delete old yasm"
###	svn co http://www.tortall.net/svn/yasm/trunk/yasm yasm
###	cd yasm
###	rm -r $(find -name \\.svn)
###	patch -Np1 < ../devel/yasm.diff
###	./autogen.sh
###	./configure
###	make
###	make distclean
###	rm -r autom4te.cache
###
###	and replace the symbolic links in the config directory with real files
###
###	cd ..
###	svn add yasm
###	svn commit -m "new yasm installed"
###
###
### NOTE we can get rid of the readline part , and nail part? , and add in profiling

diff -Naur yasm2227/config/config.sub mpiryasm/config/config.sub
--- yasm2227/config/config.sub	2010-06-25 12:59:22.000000000 +0100
+++ mpiryasm/config/config.sub	2010-06-25 13:00:42.000000000 +0100
@@ -1073,7 +1073,7 @@
 	pmac | pmac-mpw)
 		basic_machine=powerpc-apple
 		;;
-	*-unknown)
+	*-unknown | *-pc | *-apple | *-w64)
 		# Make sure to match an already-canonicalized machine name.
 		;;
 	*)
diff -Naur yasm2227/configure.ac mpiryasm/configure.ac
--- yasm2227/configure.ac	2010-06-25 12:59:23.000000000 +0100
+++ mpiryasm/configure.ac	2010-06-25 13:00:42.000000000 +0100
@@ -20,6 +20,22 @@
 #
 # autoconf command-line options
 #
+AC_ARG_ENABLE(assert,,,)
+
+AC_ARG_ENABLE(alloca,,,)
+
+AC_ARG_ENABLE(cxx,,,)
+
+AC_ARG_ENABLE(fft,,,)
+
+AC_ARG_ENABLE(nails,,,)
+
+AC_ARG_ENABLE(gmpcompat,,,)
+
+AC_ARG_WITH(readline,,,)
+
+AC_ARG_ENABLE(fat,,,)
+
 AC_ARG_ENABLE(debug,
 AC_HELP_STRING([--enable-debug],
 	       [Turn on debugging and compile time warnings]),

Reply via email to