This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- gcc/lto-wrapper.c 2015-01-30 16:15:00.000000000 +0000 | |
| +++ gcc/lto-wrapper.c 2015-07-10 14:06:42.104411726 +0000 | |
| @@ -934,7 +934,7 @@ | |
| filename[p - argv[i]] = '\0'; | |
| file_offset = (off_t) loffset; | |
| } | |
| - fd = open (argv[i], O_RDONLY); | |
| + fd = open (argv[i], O_RDONLY|O_BINARY); | |
| if (fd == -1) | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // test for DUE PR 3524 | |
| // connection: | |
| // 18 (dut) -> 0 (tester) | |
| // 19 -> 1 | |
| // 2 -> A0 -> test1 | |
| // 3 -> A1 -> test2 | |
| // 4 -> 4 -> test3 | |
| // A0 -> 5 -> test4 | |
| // 5 -> 6 -> test5 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /ssd/Arduino-master/build/linux/work/arduino-builder -dump-prefs -logger=machine -hardware "/ssd/Arduino-master/build/linux/work/hardware" -hardware "/home/martino/.arduino15/packages" -hardware "/home/martino/Arduino/hardware" -tools "/ssd/Arduino-master/build/linux/work/tools-builder" -tools "/ssd/Arduino-master/build/linux/work/hardware/tools/avr" -tools "/home/martino/.arduino15/packages" -built-in-libraries "/ssd/Arduino-master/build/linux/work/libraries" -libraries "/home/martino/Arduino/libraries" -fqbn=Intel-Test:i586:izmir_fd -ide-version=10608 -build-path "/tmp/build69fcfd56c01e23f9fbc227a6dc53fb04.tmp" -warnings=all -prefs=build.warn_data_percentage=75 -verbose "/tmp/untitled506475262.tmp/sketch_feb03a/sketch_feb03a.ino" | |
| /ssd/Arduino-master/build/linux/work/arduino-builder -compile -logger=machine -hardware "/ssd/Arduino-master/build/linux/work/hardware" -hardware "/home/martino/.arduino15/packages" -hardware "/home/martino/Arduino/hardware" -tools "/ssd/Arduino-master/build/linux/work/tools-builde |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From 970583587fbb9860cef9c17829f26b4c5f6170f0 Mon Sep 17 00:00:00 2001 | |
| From: Martino Facchin <m.facchin@arduino.cc> | |
| Date: Fri, 26 Aug 2016 18:08:52 +0200 | |
| Subject: [PATCH] Treat cpp string as UTF8 | |
| Solves https://github.com/arduino/Arduino/issues/5277 | |
| --- | |
| src/arduino.cc/builder/utils/utils.go | 118 ++++++++++++++++++++++++++++------ | |
| 1 file changed, 100 insertions(+), 18 deletions(-) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -e | |
| # Raspberry Pi dnsmasq script | |
| # Stephen Wood | |
| # www.heystephenwood.com | |
| # | |
| # Usage: $ sudo ./raspberrypi_dnsmasq | |
| # | |
| # Net install: |
OlderNewer