We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0060dba commit 754d456Copy full SHA for 754d456
sql/files/defaultdata/swift/run
@@ -50,6 +50,12 @@ fi
50
# Add -DONLINE_JUDGE or -DDOMJUDGE below if you want it make easier for teams
51
# to do local debugging.
52
53
+# Compilation needs to store temporary files. The current workdirectory is not
54
+# available during the submission run. The `HOME`
55
+# is needed for the linker to work.
56
+export TMPDIR="$PWD"
57
+export HOME="$PWD"
58
+
59
# -O: Optimizations (default for speed)
60
# -static-executable: Statically link the executable
61
# -static-stdlib: Statically link the Swift standard library
0 commit comments