Make sure you have libuuid installed on your system, precisely - it's "development" version. It is usually in util-linux package, so install util-linux-dev or the like.
I'm using Guix, if you do too - run this:
$ guix shell -m manifest.scm| *.hex | |
| *.s | |
| *.elf |
| elf | |
| object-replacement.char | |
| new-elf |
| ### Pass only daemon-socket | |
| bash-5.1$ guix shell -CNP --share=/var/guix/daemon-socket guix busybox | |
| tosh@universe /tmp/tmp.EfI1Syh6ug [env]$ readlink -f ~/.guix-profile | |
| /gnu/store/xp975nkjikb5gzdh45ig1kh9qddcrvlv-profile | |
| tosh@universe /tmp/tmp.EfI1Syh6ug [env]$ guix package -I | |
| tosh@universe /tmp/tmp.EfI1Syh6ug [env]$ guix package -i hello | |
| guix package: warning: Consider running 'guix pull' followed by | |
| 'guix package -u' to get up-to-date packages and security updates. |
| #!/bin/sh | |
| cc="clang" | |
| libc_lib="/usr/lib64/musl" | |
| ldso="/lib64/ld-musl-x86_64.so.1" | |
| cleared= | |
| shared= | |
| userlinkdir= | |
| userlink= | |
| for x ; do |
Build it:
$ make overlapRun it:
$ ./overlap | (use-modules (gnu packages base)) | |
| (use-modules (guix build-system copy)) | |
| (use-modules (guix download)) | |
| (use-modules (guix packages)) | |
| (use-modules (guix licenses)) | |
| (define-public u-boot-khadas-vim3l | |
| (package | |
| (name "u-boot-khadas-vim3l") | |
| (version "2020.04") |
| version: '3.7' | |
| services: | |
| postgres: | |
| image: postgres:12.3 | |
| environment: | |
| POSTGRES_HOST_AUTH_METHOD: 'trust' | |
| ports: | |
| - 5432:5432 |
| import ast | |
| import logging | |
| import operator as op | |
| import signal | |
| import sys | |
| import astor | |
| logging.basicConfig(level=logging.INFO, stream=sys.stdout, format='%(message)s') |
| [[source]] | |
| url = "https://pypi.python.org/simple" | |
| verify_ssl = true | |
| name = "pypi" | |
| [packages] | |
| SQLAlchemy = "*" | |
| "psycopg2-binary" = "*" | |
| [dev-packages] |