I hereby claim:
- I am fallen on github.
- I am yannsionneau (https://keybase.io/yannsionneau) on keybase.
- I have a public key whose fingerprint is 98C2 925C E10C 11D4 2621 24DA C207 2B2C 63C7 D52A
To claim this, I am signing this object:
The following verilog file gives this error: | |
Info: constraining clock net 'clk25' to 25.00 MHz | |
Info: Logic utilisation before packing: | |
Info: Total LUT4s: 1905/24288 7% | |
Info: logic LUTs: 1445/24288 5% | |
Info: carry LUTs: 436/24288 1% | |
Info: RAM LUTs: 16/ 3036 0% | |
Info: RAMW LUTs: 8/ 6072 0% |
fallen@fallen-ThinkPad-X260:~/dev/NetBSD$ ./build.sh -m milkymist -u -U -j 1 tools | |
===> build.sh command: ./build.sh -m milkymist -u -U -j 1 tools | |
===> build.sh started: Sun Mar 31 11:08:57 CEST 2019 | |
===> NetBSD version: 6.99.16 | |
===> MACHINE: milkymist | |
===> MACHINE_ARCH: lm32 | |
===> Build platform: Linux 4.18.0-16-generic x86_64 | |
===> HOST_SH: /bin/sh | |
===> No $TOOLDIR/bin/nbmake, needs building. | |
===> Bootstrapping nbmake |
/* | |
* On Linux, compile with: | |
* $ gcc main.c -o main -lhidapi-libusb | |
* | |
* Example adapted from the one on http://www.signal11.us/oss/hidapi/ | |
* When running as root the 2 hid_open work (print OK) | |
* When running as non-root the first one just fails, and the second one causes segmentation fault | |
* This seems to be due to serial_number being NULL when you don't have access to USB device | |
* And hidapi does a wcscmp() without checking cur_dev->serial_number is non-NULL https://github.com/signal11/hidapi/blob/master/libusb/hid.c#L709 | |
*/ |
I hereby claim:
To claim this, I am signing this object:
diff -rup dl/gcc-4.5.4/gcc/doc/cppopts.texi gcc-4.5.4/gcc/doc/cppopts.texi | |
--- dl/gcc-4.5.4/gcc/doc/cppopts.texi 2010-04-02 21:54:46.000000000 +0200 | |
+++ gcc-4.5.4/gcc/doc/cppopts.texi 2013-11-08 19:41:47.284525238 +0100 | |
@@ -760,7 +760,7 @@ Replacement: [ ] @{ @} | |
Enable special code to work around file systems which only permit very | |
short file names, such as MS-DOS@. | |
-@itemx --help | |
+@item --help | |
@itemx --target-help |
#!/bin/sh | |
echo "Fetching" | |
git fetch --all | |
echo "Creating \"temp\" branch" | |
git checkout -b temp origin/master | |
echo "Rebasing temp branch on top of local master" | |
git rebase master temp | |
echo "Updating local master branch" | |
git checkout master | |
git reset --hard temp |