Skip to content

Commit e1274d2

Browse files
committed
Repair CI and more update docs
1 parent fc4f190 commit e1274d2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,6 +357,6 @@ and the library include files in [`include/` and its subfolders](./include/)
357357
(with two exceptions for the sources, as mentioned below)
358358
are licensed under [GNU General Public License Version 3](./COPYING3) or higher.
359359
360-
The [example codes](./examples/) and two library source files
360+
All of the [example codes](./examples/) and also two library source files
361361
(namely `functexcept.cc` and `math.cc` in [`src/`](./src/))
362362
are subject to the terms of the [Mozilla Public License Version 2.0](./COPYING.MPLv2).

examples/cmath/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ $(TARGET).hex: $(TARGET).elf
3737
avr-objcopy -O ihex -j .data -j .text $(TARGET).elf $(TARGET).hex
3838

3939
$(TARGET).elf: $(OBJECTS)
40-
avr-g++ $(LDFLAGS) -mmcu=$(MCU) -mdouble=64 -mlong-double=64 $(OBJECTS) -o $(TARGET).elf
40+
avr-g++ $(LDFLAGS) -mmcu=$(MCU) $(OBJECTS) -o $(TARGET).elf
4141

4242
$(BUILD_DIR)/%.cpp.o: %.cpp
4343
@mkdir -p $(BUILD_DIR)

0 commit comments

Comments
 (0)