summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Radek <chris@timeguy.com>2014-06-18 15:14:31 -0500
committerChris Radek <chris@timeguy.com>2014-06-18 15:14:31 -0500
commita91a55a72d2813e359999004a65b9e9ee5b8f1ae (patch)
treeed8948cb7b67c0c970058a0cd33e0bab4dd1941e
parent4b2203b360bea96c88231a82c2c8008164cb3384 (diff)
parent5bbab25f8dfb5ad7afdfefcee21ca45a86df7e63 (diff)
downloadlinuxcnc-master.tar.gz
linuxcnc-master.zip
Merge branch '2.6'HEADmaster
Conflicts: VERSION
-rw-r--r--debian/changelog28
-rwxr-xr-xsrc/Makefile2
-rw-r--r--src/Makefile.inc.in2
3 files changed, 30 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index 8decc3458..03fa110e8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,31 @@
+linuxcnc (1:2.6.0~pre4) precise; urgency=low
+
+ * fix several bugs with NURBS handling (G5, G5.1, G5.2)
+ * add a Rapid Override control (analogous to Feed Override)
+ * support moving 3, 6, or all 9 axes for a tool change
+
+ * add a driver for the WJ200 VFD
+ * add a driver for the Mesa 7i90 AnyIO board
+
+ * general mechatronics: fix a NULL pointer bug
+
+ * touchy: accept all axes for G43.1 TLOs
+ * gmoccapy: fix a couple of bugs
+
+ * comp: reject invalid .comp files that don't match the component name
+
+ * docs: add docs for G5, G5.1, G5.2 NURBS G-codes
+ * docs: clarify naming requirements of .comp files
+ * docs: update classic ladder manpage
+ * docs: add info on the servo axis calibration assistant in Axis GUI
+ * docs: misc minor fixes
+
+ * fix a "crawling scrollbar" cosmetic bug in linuxcnctop
+ * fix handling of shell metacharacters in .ini filenames
+ * fix auto-closing of directories in config picker
+
+ -- Sebastian Kuzminsky <seb@highlab.com> Wed, 11 Jun 2014 21:39:31 -0600
+
linuxcnc (1:2.6.0~pre3) precise; urgency=low
* HAL: make halcmd arrow syntax ('=>', '<=', '<=>') more strict
diff --git a/src/Makefile b/src/Makefile
index 0e88f57c3..25bf3c6a0 100755
--- a/src/Makefile
+++ b/src/Makefile
@@ -1017,7 +1017,7 @@ $(sort $(RTOBJS)) : objects/rt%.o : %.c
../rtlib/%.o:
$(ECHO) Linking $@
- $(Q)ld -r -static -S -Os $(LDFLAGS) -o $@ $^ $(EXTRALINK) $(MATHLIB)
+ $(Q)ld -r -static -S $(LDFLAGS) -o $@ $^ $(EXTRALINK) $(MATHLIB)
endif
ifneq "$(filter normal sim,$(BUILD_SYS))" ""
diff --git a/src/Makefile.inc.in b/src/Makefile.inc.in
index 036efac30..d3b7dda27 100644
--- a/src/Makefile.inc.in
+++ b/src/Makefile.inc.in
@@ -75,7 +75,7 @@ RTPREFIX = @RTPREFIX@
RTAI = @RTAI@
RTFLAGS = @RTFLAGS@ @EXT_RTFLAGS@
KERNELDIR = @KERNELDIR@
-RTFLAGS := -Os -I. -I@RTDIR@/include $(RTFLAGS) -DRTAPI -D_GNU_SOURCE -Drealtime
+RTFLAGS := -I. -I@RTDIR@/include $(RTFLAGS) -DRTAPI -D_GNU_SOURCE -Drealtime
USE_RTLIBM = @USE_RTLIBM@
USE_LIBM = @USE_LIBM@
USE_STUBS = @USE_STUBS@