Skip to content

Instantly share code, notes, and snippets.

View eepp's full-sized avatar

Philippe Proulx eepp

View GitHub Profile
@eepp
eepp / Makefile
Last active August 29, 2015 14:11 — forked from simark/Makefile
all: libtruc.so app tracepoints.so
app: app.o
gcc -o app app.o -ldl
app.o: app.c
gcc -c app.c -g3 -O0 -Wall
libtruc.so: truc.o tracepoints.o
gcc -shared -o libtruc.so truc.o -ldl
@eepp
eepp / BuildingLiferayFromScratch.md
Last active December 30, 2015 22:49
Building Liferay from scratch

Building Liferay from scratch

This follows James Falkner's recipe.

Make sure you have Java and its compiler:

$ java -fullversion
java full version "1.7.0_55-b14"
$ javac -fullversion
@eepp
eepp / BeagleBoneLinuxUBootFromScratch.md
Last active February 24, 2021 17:44
Building U-Boot and Linux 3.11 from scratch for the BeagleBone, and booting

Building U-Boot and Linux 3.11 from scratch for the BeagleBone, and booting

BeagleBone image

Introduction