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
ead2dcfce7917e02a88f00e1ee7591bb9eef70b6b539963a336aa02c73372246 |
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
#!/usr/bin/env python | |
import sys, gi, operator | |
gi.require_version('Gtk', '4.0') | |
gi.require_version('Adw', '1') | |
from gi.repository import Gtk, Adw, Gdk | |
class MainWindow(Gtk.ApplicationWindow): | |
def __init__(self, *args, **kwargs): |
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
CC = gcc | |
LD = gcc | |
AR = ar | |
MAKE = make | |
RM = rm -f | |
CAT = cat | |
CFLAGS = -D_REENTRANT -D_LARGEFILE64_SOURCE -g -Wall -Wextra | |
CINCLUDES = -I3rdparty/apr/include \ |
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
crab@gentoo ~/Public/perl6/MoarVM $ perl Configure.pl | |
Welcome to MoarVM! | |
Configuring native build environment ................... OK | |
make: make | |
compile: gcc -D_REENTRANT -D_LARGEFILE64_SOURCE -g -Wall -Wextra | |
link: gcc -g | |
libs: -lm -lpthread -luuid -lrt |
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
cd src/ops && /usr/bin/ops2c C --dynamic mvmcc.ops | |
/usr/bin/nqp --target=pir ../lib/MAST/Ops.nqp > MASTOps.pir | |
# Parsing mvmcc.ops... | |
# Parsed mvmcc.ops in 0.148 seconds; found 3 ops. | |
# Ops parsed in 0.165 seconds. | |
cd src/ops && clang -c -o mvmcc_ops.o -I/usr/include/parrot/5.6.0-devel -I/usr/include/parrot/5.6.0-devel/pmc -D_REENTRANT -D_GNU_SOURCE -pipe -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHASATTRIBUTE_CONST -DHASATTRIBUTE_DEPRECATED -DHASATTRIBUTE_MALLOC -DHASATTRIBUTE_NONNULL -DHASATTRIBUTE_NORETURN -DHASATTRIBUTE_PURE -DHASATTRIBUTE_UNUSED -DHASATTRIBUTE_WARN_UNUSED_RESULT -DHASATTRIBUTE_HOT -DHASATTRIBUTE_COLD -DDISABLE_GC_DEBUG=1 -DNDEBUG -DHAS_GETTEXT -I/usr/lib64/libffi-3.0.11/include -fPIC -march=native -O2 -pipe -funit-at-a-time -Wall -Wextra -Waggregate-return -Wcast-qual -Wdisabled-optimization -Wdiv-by-zero -Wendif-labels -Wformat-extra-args -Wformat-nonliteral -Wformat-security -Wformat-y2k -Wimplicit -Wimport -Winit-self -Winline -Winvalid-pch -Werror=missing-braces -Wmiss |
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
> print "foo" | |
> |