Skip to content

Commit

Permalink
j/k, it dropped to llvm-g++ :(
Browse files Browse the repository at this point in the history
  • Loading branch information
meh committed Dec 5, 2009
1 parent 1d66444 commit 7b5eb75
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
VERSION = 0.0.1
NAME = lulzKey

CC = clang
CXX = clang
CFLAGS = -m32 -Wall -Wextra -Wno-long-long -pedantic -nostartfiles -nostdlib -nodefaultlibs -fno-builtin -fno-stack-protector -fstrength-reduce -fomit-frame-pointer -finline-functions -fno-rtti -fno-exceptions -D___VERSION___='"${VERSION}"' -I./include -I./sources -I./lolibc/include
CC = llvm-gcc # clang
CXX = llvm-g++ # clang
CFLAGS = -m32 -Wall -Wextra -Wno-long-long -pedantic -ffreestanding -fno-builtin -nostartfiles -nostdlib -nodefaultlibs -fno-stack-protector -fstrength-reduce -fomit-frame-pointer -finline-functions -fno-rtti -fno-exceptions -D___VERSION___='"${VERSION}"' -I./include -I./sources -I./lolibc/include
CXXFLAGS = ${CFLAGS}
LDFLAGS = -T linker.ld -s -L./lolibc -static -llolibc

Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Yes yes I know, another gay OS, just trying something to learn stuff about kerne

Used software:
- app-emulation/qemu-0.11.0
- sys-devel/clang-2.6-r1
- sys-devel/llvm-gcc-2.6

If you have problems ensure that you're using those versions or don't bother meh.

Expand Down
2 changes: 1 addition & 1 deletion include/Interrupt/Interrupt.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace Kernel {
class Interrupt
{
protected:
Interrupt (void) {};
Interrupt (void) {}

public:
typedef Processor::InterruptRegisters Registers;
Expand Down

0 comments on commit 7b5eb75

Please sign in to comment.