[-]
[+]
|
Changed |
bandwidth.changes
|
|
[-]
[+]
|
Changed |
bandwidth.spec
^
|
|
[-]
[+]
|
Added |
bandwidth-1.1-objectorder.patch
^
|
@@ -0,0 +1,35 @@
+--- Makefile.orig 2014-08-03 03:39:37.000000000 +0200
++++ Makefile 2014-08-30 20:26:32.606478222 +0200
+@@ -40,27 +40,27 @@
+ bandwidth64: main.c routines64.asm BMP64.a BMPGraphing64.a
+ ${AS} -f elf64 routines64.asm -o routines64.o
+ ${CC} ${CFLAGS} -m64 -c ${SRC}
+- ${LD} -m64 BMP64.a BMPGraphing64.a routines64.o ${OBJ} ${LIB} -o bandwidth64
++ ${LD} -m64 routines64.o ${OBJ} BMP64.a BMPGraphing64.a ${LIB} -o bandwidth64
+
+ bandwidth32: main.c routines32.asm BMP32.a BMPGraphing32.a
+ ${AS} -f elf routines32.asm -o routines32.o
+ ${CC} ${CFLAGS} -m32 -c ${SRC}
+- ${LD} -m32 BMP32.a BMPGraphing32.a routines32.o ${OBJ} ${LIB} -o bandwidth32
++ ${LD} -m32 routines32.o ${OBJ} BMP32.a BMPGraphing32.a ${LIB} -o bandwidth32
+
+ bandwidth-mac64: main.c routines64.asm BMPGraphing64.a BMP64.a
+ ${AS} -f macho64 routines64.asm -o routines64.o
+ ${CC} ${CFLAGS} -m64 -c ${SRC}
+- ${LD} -m64 BMPGraphing64.a BMP64.a routines64.o ${OBJ} ${LIB} -o bandwidth-mac64
++ ${LD} -m64 routines64.o ${OBJ} BMPGraphing64.a BMP64.a ${LIB} -o bandwidth-mac64
+
+ bandwidth-mac32: main.c routines32.asm BMP32.a BMPGraphing32.a
+ ${AS} -f macho routines32.asm -o routines32.o
+ ${CC} ${CFLAGS} -m32 -c ${SRC}
+- ${LD} -m32 BMP32.a BMPGraphing32.a routines32.o ${OBJ} ${LIB} -o bandwidth-mac32
++ ${LD} -m32 routines32.o ${OBJ} BMP32.a BMPGraphing32.a ${LIB} -o bandwidth-mac32
+
+ bandwidth-win32: main.c routines32.asm BMP32.a BMPGraphing32.a
+ ${AS} -f win32 routines32.asm -o routines32.o
+ ${CC} ${CFLAGS} -m32 -c ${SRC} -Wall -O6 -D__WIN32__ -DWINVER=0x0600
+- ${LD} -m32 BMP32.a BMPGraphing32.a routines32.o ${OBJ} ${LIB} -o bandwidth-win32
++ ${LD} -m32 routines32.o ${OBJ} BMP32.a BMPGraphing32.a ${LIB} -o bandwidth-win32
+
+ BMPGraphing64.a: BMPGraphing.c
+ ${CC} ${CFLAGS} -m64 -c BMPGraphing.c
|