- Configure git.
# ~/.config/git/config or ~/.gitconfig
[sendemail]
confirm = auto
smtpServer = smtp.gmail.com
smtpServerPort = 587
smtpEncryption = tls
smtpUser = <gmail email address>
/******************************************************************************************* | |
* | |
* raylib example - procedural mesh generation | |
* | |
* Example originally created with raylib 1.8, last time updated with raylib 4.0 | |
* | |
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified, | |
* BSD-like license that allows static linking with closed source software | |
* | |
* Copyright (c) 2017-2023 Ramon Santamaria (@raysan5) |
REGIONS = { | |
'Auvergne-Rhône-Alpes': ['01', '03', '07', '15', '26', '38', '42', '43', '63', '69', '73', '74'], | |
'Bourgogne-Franche-Comté': ['21', '25', '39', '58', '70', '71', '89', '90'], | |
'Bretagne': ['35', '22', '56', '29'], | |
'Centre-Val de Loire': ['18', '28', '36', '37', '41', '45'], | |
'Corse': ['2A', '2B'], | |
'Grand Est': ['08', '10', '51', '52', '54', '55', '57', '67', '68', '88'], | |
'Guadeloupe': ['971'], | |
'Guyane': ['973'], | |
'Hauts-de-France': ['02', '59', '60', '62', '80'], |
#include <algorithm> | |
#include <vector> | |
#include <benchmark/benchmark.h> | |
template<class T> | |
static void vector_add(benchmark::State& state) | |
{ | |
size_t size = state.range(0); |
# ~/.config/git/config or ~/.gitconfig
[sendemail]
confirm = auto
smtpServer = smtp.gmail.com
smtpServerPort = 587
smtpEncryption = tls
smtpUser = <gmail email address>
diff --git a/Makefile b/Makefile | |
index ee02e0f..25a4aa5 100644 | |
--- a/Makefile | |
+++ b/Makefile | |
@@ -373,19 +373,19 @@ maketest: | |
stage1: force | |
-mkdir stage1 | |
mv $(STAGESTUFF) $(STAGE_GCC) stage1 | |
- -rm stage1/gnulib | |
+ -rm -f stage1/gnulib |
# | |
# | |
# git-updater.py - for git clone and pull in local | |
# | |
# Created by Bensuperpc(Bensuperpc@gmail.com) 07 may 2019 | |
# Updated by Bensuperpc(Bensuperpc@gmail.com) 01 June 2021 | |
# | |
# | |
# Released into the Public domain with MIT licence | |
# https://opensource.org/licenses/MIT |
#!/bin/sh | |
TOOLCHAIN=/opt/armv6-eabihf--glibc--bleeding-edge-2020.02-2/bin/arm-buildroot-linux-gnueabihf- | |
cp arch/arm/configs/nintendo3ds_defconfig .config | |
make ARCH=arm CROSS_COMPILE=$TOOLCHAIN -j8 | |
make ARCH=arm CROSS_COMPILE=$TOOLCHAIN nintendo3ds_ctr.dtb | |
echo "Output file: ./arch/arm/boot/zImage" |
# | |
# Automatically generated file; DO NOT EDIT. | |
# Buildroot 2020.11-312-gfd5eeabac0 Configuration | |
# | |
BR2_HAVE_DOT_CONFIG=y | |
BR2_HOST_GCC_AT_LEAST_4_9=y | |
BR2_HOST_GCC_AT_LEAST_5=y | |
BR2_HOST_GCC_AT_LEAST_6=y | |
BR2_HOST_GCC_AT_LEAST_7=y | |
BR2_HOST_GCC_AT_LEAST_8=y |
// Integer and float benchmark for Win32 and Win64 | |
// Results are below main(), line 91 | |
#include <stdlib.h> | |
#include <stdio.h> | |
#ifdef _WIN32 | |
#include <sys/timeb.h> | |
#else | |
#include <sys/time.h> |