Using package arm-none-eabi-gcc-linaro-7.4.2019.02p0
and arm-none-eabi-newlib-2.2.0.1p1
, the compiler can't find a multilib match for this combination of CFLAGS:
- -mcpu=cortex-m4
- -mthumb
- -mfloat-abi=hard
- -mfpu=fpv4-sp-d16
This is all it provides:
#include <stdio.h> | |
#include <sys/ioctl.h> | |
#include <fcntl.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <unistd.h> | |
#include <errno.h> | |
int main(int argc, char *argv[]) | |
{ |
Using package arm-none-eabi-gcc-linaro-7.4.2019.02p0
and arm-none-eabi-newlib-2.2.0.1p1
, the compiler can't find a multilib match for this combination of CFLAGS:
This is all it provides:
bool nmalloc(size_t n, void ***elts, ...) | |
{ | |
va_list ap; | |
*elts = malloc(n * sizeof **elts); | |
if (!*elts) | |
return false; | |
va_start(ap, elts); | |
for (size_t i = 0; i < n; i++) | |
{ |
/* concat(0) creates a new "" in heap memory, | |
and concat(1, foo) is equivalent to strdup(foo). | |
Note I haven't tested this function yet. */ | |
char *concat(size_t n, ...) | |
{ | |
va_list ap; | |
size_t retlen = 0; | |
char *ret = calloc(1,1); |
#include "dict.h" | |
#include <stdlib.h> | |
#include <search.h> | |
/* XOPEN for strdup */ | |
#define _XOPEN_SOURCE 600 | |
#include <string.h> | |
struct dict_entry |
#define _POSIX_C_SOURCE 200112L | |
#include <search.h> | |
#include <stdbool.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
struct st_symbol | |
{ |
VPATH=/usr/local/bin | |
BINARIES=ruby node | |
all : ${BINARIES} | |
echo "Deps are installed" | |
${BINARIES} : | |
asdf plugin-add $@ |
dig $1 MX +short | |
dig $1 TXT +short | grep spf | |
dig default._domainkey.$1 TXT +short | |
dig google._domainkey.$1 TXT +short | |
dig _dmarc.$1 TXT +short |
#!/bin/bash | |
ACTION="${1:-start}" | |
VER="${2:-8.0}" | |
case $ACTION in | |
install) | |
echo "Installing versioned extension shared object" | |
cp src/backend/distributed/citus.so /usr/local/lib/postgresql/citus-${VER}.so | |
;; |
Index: infrastructure/db/user.list | |
=================================================================== | |
RCS file: /cvs/ports/infrastructure/db/user.list,v | |
retrieving revision 1.318 | |
diff -u -p -r1.318 user.list | |
--- infrastructure/db/user.list 15 Jun 2018 09:29:03 -0000 1.318 | |
+++ infrastructure/db/user.list 7 Jul 2018 19:44:42 -0000 | |
@@ -321,3 +321,4 @@ id user group port options | |
810 _sabnzbd _sabnzbd news/sabnzbd | |
811 _openvpnusers net/openvpn_bsdauth |