Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TP6
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
fila2-os
TP6
Commits
b91a2ca0
Commit
b91a2ca0
authored
5 years ago
by
RP
Browse files
Options
Downloads
Patches
Plain Diff
VSCode configuration
parent
2fc3f495
Loading
Loading
Loading
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.vscode/extensions.json
+5
-0
5 additions, 0 deletions
.vscode/extensions.json
.vscode/launch.json
+25
-0
25 additions, 0 deletions
.vscode/launch.json
.vscode/tasks.json
+73
-2
73 additions, 2 deletions
.vscode/tasks.json
with
103 additions
and
2 deletions
.vscode/extensions.json
0 → 100644
+
5
−
0
View file @
b91a2ca0
{
"recommendations"
:
[
"webfreak.debug"
]
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
.vscode/launch.json
0 → 100644
+
25
−
0
View file @
b91a2ca0
{
//
Use
IntelliSense
to
learn
about
possible
attributes.
//
Hover
to
view
descriptions
of
existing
attributes.
//
For
more
information
,
visit:
https://go.microsoft.com/fwlink/?linkid=
830387
"version"
:
"0.2.0"
,
"configurations"
:
[
{
"type"
:
"gdb"
,
"request"
:
"attach"
,
"name"
:
"Attach to Sextant"
,
"executable"
:
"${workspaceFolder}/build/boot/sextant.elf"
,
"target"
:
"localhost:1234"
,
"remote"
:
true
,
"cwd"
:
"${workspaceRoot}"
,
"valuesFormatting"
:
"parseText"
,
"windows"
:
{
"gdbpath"
:
"C:/sextant/ccompil/gdb7.exe"
,
"autorun"
:
[
]
},
"showDevDebugOutput"
:
true
,
"printCalls"
:
true
},
]
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
.vscode/tasks.json
+
73
−
2
View file @
b91a2ca0
...
...
@@ -9,15 +9,48 @@
"command"
:
"ls -l"
},
{
"label"
:
"Download and install the windows dependencies (Windows10)"
,
"type"
:
"shell"
,
"windows"
:
{
"command"
:
[
"if (Test-Path -Path 'C:
\\
sextant') {rmdir -r C:
\\
sextant};"
,
"if (Test-Path -Path 'C:
\\
extract_sextant') {rmdir -r C:
\\
extract_sextant};"
,
"Invoke-WebRequest http://www.menaud.fr/Cours/Systeme/Subjects/Codes/PS1/sextant_Win10_64.zip -O sextant_Win10_64.zip;"
,
"Expand-Archive -Force sextant_Win10_64.zip C:
\\
extract_sextant;"
,
"mv C:
\\
extract_sextant
\\
sextant C:
\\
sextant;"
,
"rmdir -r C:
\\
extract_sextant;"
,
"rm sextant_Win10_64.zip;"
],
"options"
:
{
"env"
:
{
"PATH"
:
"C:
\\
sextant
\\
ccompil"
}
}
},
"group"
:
{
"kind"
:
"build"
,
"isDefault"
:
true
},
"problemMatcher"
:
[]
},
{
"label"
:
"Build Sextant"
,
"type"
:
"shell"
,
"windows"
:
{
"command"
:
"C:
\\
Program Files
\\
nodejs
\\
node.exe"
"command"
:
"make"
,
"options"
:
{
"env"
:
{
"PATH"
:
"C:
\\
sextant
\\
ccompil"
}
}
},
"linux"
:
{
"command"
:
"make"
},
"osx"
:
{
"command"
:
"make"
},
"group"
:
{
"kind"
:
"build"
,
"isDefault"
:
true
...
...
@@ -28,12 +61,46 @@
"label"
:
"Run Sextant"
,
"type"
:
"shell"
,
"windows"
:
{
"command"
:
"C:
\\
Program Files
\\
nodejs
\\
node.exe"
"command"
:
"cd build/boot; c:
\\
sextant
\\
qemu
\\
qemu.exe -L
\"
c:
\\
sextant
\\
qemu
\"
-net nic,model=ne2k_isa -net user -tftp ./ -cdrom grub.iso"
,
"options"
:
{
"env"
:
{
"PATH"
:
"C:
\\
sextant
\\
ccompil"
}
}
},
"linux"
:
{
"comments"
:
"To quit Alt + 2 > quit"
,
"command"
:
"cd build/boot; qemu-system-x86_64 -net nic,model=ne2k_isa -net user,tftp=./ -cdrom grub.iso"
},
"osx"
:
{
"comments"
:
"To quit Alt + 2 > quit"
,
"command"
:
"cd build/boot; qemu-system-x86_64 -net nic,model=ne2k_isa -net user,tftp=./ -cdrom grub.iso"
},
"group"
:
{
"kind"
:
"build"
,
"isDefault"
:
true
},
"problemMatcher"
:
[]
},
{
"label"
:
"Debug Sextant"
,
"type"
:
"shell"
,
"windows"
:
{
"command"
:
"cd build/boot; c:
\\
sextant
\\
qemu
\\
qemu.exe -S -s -L
\"
c:
\\
sextant
\\
qemu
\"
-net nic,model=ne2k_isa -net user -tftp ./ -cdrom grub.iso"
,
"options"
:
{
"env"
:
{
"PATH"
:
"C:
\\
sextant
\\
ccompil"
}
}
},
"linux"
:
{
"comments"
:
"To quit Alt + 2 > quit"
,
"command"
:
"cd build/boot; qemu-system-i386 -S -s -net nic,model=ne2k_isa -net user,tftp=./ -cdrom grub.iso"
},
"osx"
:
{
"comments"
:
"To quit Alt + 2 > quit"
,
"command"
:
"cd build/boot; qemu-system-i386 -S -s -net nic,model=ne2k_isa -net user,tftp=./ -cdrom grub.iso"
},
"group"
:
{
"kind"
:
"build"
,
"isDefault"
:
true
...
...
@@ -50,6 +117,10 @@
"comments"
:
"To quit Alt + 2 > quit"
,
"command"
:
"cd build/boot; qemu-system-x86_64 -curses -net nic,model=ne2k_isa -net user,tftp=./ -cdrom grub.iso"
},
"osx"
:
{
"comments"
:
"To quit Alt + 2 > quit"
,
"command"
:
"cd build/boot; qemu-system-x86_64 -curses -net nic,model=ne2k_isa -net user,tftp=./ -cdrom grub.iso"
},
"group"
:
{
"kind"
:
"build"
,
"isDefault"
:
true
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment