diff options
author | dzwdz | 2022-08-28 22:23:05 +0200 |
---|---|---|
committer | dzwdz | 2022-08-28 22:23:20 +0200 |
commit | f2eb3a78c7b69c4b8e118d91327cc5c1016481fc (patch) | |
tree | 152904ceda01fb7d067819dc483aab91d2ccd91c /ports | |
parent | 98464ad1b65066880bc892289239bafd39fe470b (diff) |
kernel/amd64: SSE support
Diffstat (limited to 'ports')
-rwxr-xr-x | ports/bin/cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/bin/cc b/ports/bin/cc index 6478b6e..885b512 100755 --- a/ports/bin/cc +++ b/ports/bin/cc @@ -1,5 +1,5 @@ #!/bin/sh -exec x86_64-elf-gcc -ffreestanding -fPIE -mno-sse \ +exec x86_64-elf-gcc -ffreestanding -fPIE \ -nostdlib -Wl,-pie -Wl,-no-dynamic-linker -T $REPO/src/user/linker.ld \ -I$REPO/src/ -I$REPO/src/shared/include/ -I$REPO/src/user/lib/include/ \ $* \ |